diff options
-rw-r--r-- | Cargo.lock | 12 | ||||
-rw-r--r-- | helix-core/Cargo.toml | 2 | ||||
-rw-r--r-- | helix-lsp/Cargo.toml | 2 | ||||
-rw-r--r-- | helix-syntax/Cargo.toml | 2 | ||||
-rw-r--r-- | helix-term/Cargo.toml | 2 | ||||
-rw-r--r-- | helix-tui/Cargo.toml | 2 | ||||
-rw-r--r-- | helix-view/Cargo.toml | 2 |
7 files changed, 12 insertions, 12 deletions
@@ -252,7 +252,7 @@ dependencies = [ [[package]] name = "helix-core" -version = "0.0.10" +version = "0.2.0" dependencies = [ "etcetera", "helix-syntax", @@ -272,7 +272,7 @@ dependencies = [ [[package]] name = "helix-lsp" -version = "0.0.10" +version = "0.2.0" dependencies = [ "anyhow", "futures-executor", @@ -290,7 +290,7 @@ dependencies = [ [[package]] name = "helix-syntax" -version = "0.0.10" +version = "0.2.0" dependencies = [ "cc", "serde", @@ -300,7 +300,7 @@ dependencies = [ [[package]] name = "helix-term" -version = "0.0.10" +version = "0.2.0" dependencies = [ "anyhow", "chrono", @@ -326,7 +326,7 @@ dependencies = [ [[package]] name = "helix-tui" -version = "0.0.10" +version = "0.2.0" dependencies = [ "bitflags", "cassowary", @@ -338,7 +338,7 @@ dependencies = [ [[package]] name = "helix-view" -version = "0.0.10" +version = "0.2.0" dependencies = [ "anyhow", "crossterm", diff --git a/helix-core/Cargo.toml b/helix-core/Cargo.toml index 84886aa6..e44eed61 100644 --- a/helix-core/Cargo.toml +++ b/helix-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "helix-core" -version = "0.0.10" +version = "0.2.0" 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 1384ce67..bcd18a38 100644 --- a/helix-lsp/Cargo.toml +++ b/helix-lsp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "helix-lsp" -version = "0.0.10" +version = "0.2.0" 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 293731cb..472b56c0 100644 --- a/helix-syntax/Cargo.toml +++ b/helix-syntax/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "helix-syntax" -version = "0.0.10" +version = "0.2.0" 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 13fa23bf..4c650b41 100644 --- a/helix-term/Cargo.toml +++ b/helix-term/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "helix-term" -version = "0.0.10" +version = "0.2.0" 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 d819fea1..19b2edcb 100644 --- a/helix-tui/Cargo.toml +++ b/helix-tui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "helix-tui" -version = "0.0.10" +version = "0.2.0" 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 9bac60e4..96b7d9a3 100644 --- a/helix-view/Cargo.toml +++ b/helix-view/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "helix-view" -version = "0.0.10" +version = "0.2.0" authors = ["Blaž Hrastnik <blaz@mxxn.io>"] edition = "2018" license = "MPL-2.0" |