aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md8
-rw-r--r--Cargo.lock12
-rw-r--r--helix-core/Cargo.toml2
-rw-r--r--helix-lsp/Cargo.toml2
-rw-r--r--helix-syntax/Cargo.toml2
-rw-r--r--helix-term/Cargo.toml2
-rw-r--r--helix-tui/Cargo.toml2
-rw-r--r--helix-view/Cargo.toml2
8 files changed, 19 insertions, 13 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 863eca1a..51777680 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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!
diff --git a/Cargo.lock b/Cargo.lock
index ac02c7fa..b7251eab 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -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",
diff --git a/helix-core/Cargo.toml b/helix-core/Cargo.toml
index 3f9e2d36..8c83816c 100644
--- a/helix-core/Cargo.toml
+++ b/helix-core/Cargo.toml
@@ -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"
diff --git a/helix-lsp/Cargo.toml b/helix-lsp/Cargo.toml
index fb7b18c4..2d4a16c6 100644
--- a/helix-lsp/Cargo.toml
+++ b/helix-lsp/Cargo.toml
@@ -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"
diff --git a/helix-syntax/Cargo.toml b/helix-syntax/Cargo.toml
index 50b6f1cb..73eda472 100644
--- a/helix-syntax/Cargo.toml
+++ b/helix-syntax/Cargo.toml
@@ -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"
diff --git a/helix-term/Cargo.toml b/helix-term/Cargo.toml
index a4c25f27..b42daff6 100644
--- a/helix-term/Cargo.toml
+++ b/helix-term/Cargo.toml
@@ -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"
diff --git a/helix-tui/Cargo.toml b/helix-tui/Cargo.toml
index 2a23046a..aa287497 100644
--- a/helix-tui/Cargo.toml
+++ b/helix-tui/Cargo.toml
@@ -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
diff --git a/helix-view/Cargo.toml b/helix-view/Cargo.toml
index b191c31c..0368850d 100644
--- a/helix-view/Cargo.toml
+++ b/helix-view/Cargo.toml
@@ -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"