1
0
Fork 0
mirror of https://github.com/helix-editor/helix synced 2024-05-19 15:36:05 +02:00

Release v0.4.1

This commit is contained in:
Blaž Hrastnik 2021-08-14 13:31:23 +09:00
parent dbd1f11311
commit 1caedc18ca
8 changed files with 19 additions and 13 deletions

View File

@ -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
View File

@ -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",

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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

View File

@ -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"