Release v0.4.1
This commit is contained in:
parent
dbd1f11311
commit
1caedc18ca
8 changed files with 19 additions and 13 deletions
|
@ -1,5 +1,11 @@
|
|||
|
||||
# 0.4.0 (2021-08-13)
|
||||
# 0.4.1 (2021-08-14)
|
||||
|
||||
A minor release that includes:
|
||||
- A fix for rendering glitches that would occur after editing with multiple selections.
|
||||
- CI fix for grammars not being cross-compiled for aarch64
|
||||
|
||||
# 0.4.1 (2021-08-13)
|
||||
|
||||
Two months have passed, so this is another big release. A big thank you to all
|
||||
the contributors and package maintainers!
|
||||
|
|
12
Cargo.lock
generated
12
Cargo.lock
generated
|
@ -302,7 +302,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "helix-core"
|
||||
version = "0.4.0"
|
||||
version = "0.4.1"
|
||||
dependencies = [
|
||||
"arc-swap",
|
||||
"etcetera",
|
||||
|
@ -324,7 +324,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "helix-lsp"
|
||||
version = "0.4.0"
|
||||
version = "0.4.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"futures-executor",
|
||||
|
@ -342,7 +342,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "helix-syntax"
|
||||
version = "0.4.0"
|
||||
version = "0.4.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"cc",
|
||||
|
@ -353,7 +353,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "helix-term"
|
||||
version = "0.4.0"
|
||||
version = "0.4.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"chrono",
|
||||
|
@ -380,7 +380,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "helix-tui"
|
||||
version = "0.4.0"
|
||||
version = "0.4.1"
|
||||
dependencies = [
|
||||
"bitflags",
|
||||
"cassowary",
|
||||
|
@ -393,7 +393,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "helix-view"
|
||||
version = "0.4.0"
|
||||
version = "0.4.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"bitflags",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "helix-core"
|
||||
version = "0.4.0"
|
||||
version = "0.4.1"
|
||||
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
||||
edition = "2018"
|
||||
license = "MPL-2.0"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "helix-lsp"
|
||||
version = "0.4.0"
|
||||
version = "0.4.1"
|
||||
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
||||
edition = "2018"
|
||||
license = "MPL-2.0"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "helix-syntax"
|
||||
version = "0.4.0"
|
||||
version = "0.4.1"
|
||||
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
||||
edition = "2018"
|
||||
license = "MPL-2.0"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "helix-term"
|
||||
version = "0.4.0"
|
||||
version = "0.4.1"
|
||||
description = "A post-modern text editor."
|
||||
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
||||
edition = "2018"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "helix-tui"
|
||||
version = "0.4.0"
|
||||
version = "0.4.1"
|
||||
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
||||
description = """
|
||||
A library to build rich terminal user interfaces or dashboards
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "helix-view"
|
||||
version = "0.4.0"
|
||||
version = "0.4.1"
|
||||
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
||||
edition = "2018"
|
||||
license = "MPL-2.0"
|
||||
|
|
Loading…
Reference in a new issue