Unnamed repository; edit this file 'description' to name the repository.
-rw-r--r--README.md8
-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-term/src/main.rs2
-rw-r--r--helix-tui/Cargo.toml2
-rw-r--r--helix-view/Cargo.toml2
8 files changed, 15 insertions, 7 deletions
diff --git a/README.md b/README.md
index 6f27f3643..271c7bf59 100644
--- a/README.md
+++ b/README.md
@@ -57,6 +57,14 @@ There are two packages available from AUR:
- `helix-bin`: contains prebuilt binary from GitHub releases
- `helix-git`: builds the master branch of this repository
+## MacOS
+Helix can be installed on MacOS through homebrew via:
+
+```
+brew tap helix-editor/helix
+brew install helix
+```
+
# Contributing
Contributors are very welcome! **No contribution is too small and all contributions are valued.**
diff --git a/helix-core/Cargo.toml b/helix-core/Cargo.toml
index 6ae244f9b..80e7602a3 100644
--- a/helix-core/Cargo.toml
+++ b/helix-core/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "helix-core"
-version = "0.1.0"
+version = "0.0.9"
authors = ["Blaž Hrastnik <[email protected]>"]
edition = "2018"
license = "MPL-2.0"
diff --git a/helix-lsp/Cargo.toml b/helix-lsp/Cargo.toml
index 8b20cfabf..cfdbfa837 100644
--- a/helix-lsp/Cargo.toml
+++ b/helix-lsp/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "helix-lsp"
-version = "0.1.0"
+version = "0.0.9"
authors = ["Blaž Hrastnik <[email protected]>"]
edition = "2018"
license = "MPL-2.0"
diff --git a/helix-syntax/Cargo.toml b/helix-syntax/Cargo.toml
index 93ef55149..5ca4ae8de 100644
--- a/helix-syntax/Cargo.toml
+++ b/helix-syntax/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "helix-syntax"
-version = "0.1.0"
+version = "0.0.9"
authors = ["Blaž Hrastnik <[email protected]>"]
edition = "2018"
license = "MPL-2.0"
diff --git a/helix-term/Cargo.toml b/helix-term/Cargo.toml
index 3751b5ab0..b8392ad53 100644
--- a/helix-term/Cargo.toml
+++ b/helix-term/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "helix-term"
-version = "0.1.0"
+version = "0.0.9"
description = "A post-modern text editor."
authors = ["Blaž Hrastnik <[email protected]>"]
edition = "2018"
diff --git a/helix-term/src/main.rs b/helix-term/src/main.rs
index 0b55921ab..75b1dfdc1 100644
--- a/helix-term/src/main.rs
+++ b/helix-term/src/main.rs
@@ -141,7 +141,7 @@ FLAGS:
}
if args.display_version {
- println!("{} {}", env!("CARGO_PKG_NAME"), env!("CARGO_PKG_VERSION"));
+ println!("helix {}", env!("CARGO_PKG_VERSION"));
std::process::exit(0);
}
diff --git a/helix-tui/Cargo.toml b/helix-tui/Cargo.toml
index c303af047..f0831e824 100644
--- a/helix-tui/Cargo.toml
+++ b/helix-tui/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "helix-tui"
-version = "0.1.0"
+version = "0.0.9"
authors = ["Blaž Hrastnik <[email protected]>"]
description = """
A library to build rich terminal user interfaces or dashboards
diff --git a/helix-view/Cargo.toml b/helix-view/Cargo.toml
index b2d1a594c..28d026ae0 100644
--- a/helix-view/Cargo.toml
+++ b/helix-view/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "helix-view"
-version = "0.1.0"
+version = "0.0.9"
authors = ["Blaž Hrastnik <[email protected]>"]
edition = "2018"
license = "MPL-2.0"