diff --git a/Cargo.lock b/Cargo.lock index 05dcbd254..d21e5ee6b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -793,7 +793,7 @@ checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd" [[package]] name = "glistix" -version = "0.3.0" +version = "0.4.0" dependencies = [ "async-trait", "base16", @@ -840,7 +840,7 @@ dependencies = [ [[package]] name = "glistix-core" -version = "0.3.0" +version = "0.4.0" dependencies = [ "askama", "async-trait", @@ -891,7 +891,7 @@ dependencies = [ [[package]] name = "glistix-wasm" -version = "0.3.0" +version = "0.4.0" dependencies = [ "camino", "console_error_panic_hook", @@ -2259,7 +2259,7 @@ dependencies = [ [[package]] name = "test-package-compiler" -version = "0.3.0" +version = "0.4.0" dependencies = [ "camino", "glistix-core", diff --git a/README.md b/README.md index 73ba54574..55da251d0 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ For more information on Gleam, including tutorials, please check [the Gleam lang **NOTE:** Glistix is **beta software**, and **may have breaking changes**. You shouldn't rely on it on production just yet, but **feel free to give it a shot on personal or smaller projects** and **report any issues and bugs you find**. It should be functional, but we still need people to try it out and report any bugs. -**NOTE:** Glistix's latest stable version currently tracks **Gleam v1.3.2,** meaning features and fixes from up to that Gleam version are available. +**NOTE:** Glistix's latest stable version currently tracks **Gleam v1.4.1,** meaning features and fixes from up to that Gleam version are available. **NOTE:** Glistix is **an unofficial project** and is therefore **not affiliated with the Gleam project**. @@ -43,22 +43,22 @@ You can install Glistix in one of the following ways. 1. **From GitHub Releases (non-NixOS):** If you're using Linux (not NixOS), MacOS or Windows, you can install Glistix by downloading the latest precompiled binary for your platform at [https://github.com/glistix/glistix/releases](https://github.com/glistix/glistix/releases). -2. **With Nix flakes (NixOS):** Invoke the command below in the command line to download, compile and run a specific release of Glistix - here the latest at the time of writing (v0.3.0). +2. **With Nix flakes (NixOS):** Invoke the command below in the command line to download, compile and run a specific release of Glistix - here the latest at the time of writing (v0.4.0). ```sh - nix run 'github:Glistix/glistix/v0.3.0' -- --help + nix run 'github:Glistix/glistix/v0.4.0' -- --help ``` - To install permanently, you can either add `github:Glistix/glistix/v0.3.0` as an input to your system/Home Manager configuration, or use `nix profile`: + To install permanently, you can either add `github:Glistix/glistix/v0.4.0` as an input to your system/Home Manager configuration, or use `nix profile`: ```sh - nix profile install 'github:Glistix/glistix/v0.3.0' + nix profile install 'github:Glistix/glistix/v0.4.0' ``` -3. **With Cargo:** You can use Cargo to compile and install Glistix's latest release (v0.3.0 at the time of writing): +3. **With Cargo:** You can use Cargo to compile and install Glistix's latest release (v0.4.0 at the time of writing): ```sh - cargo install --git https://github.com/glistix/glistix --tag v0.3.0 --locked + cargo install --git https://github.com/glistix/glistix --tag v0.4.0 --locked ``` ## Table of Contents diff --git a/compiler-cli/Cargo.toml b/compiler-cli/Cargo.toml index 5e10f6d2c..8d0a59870 100644 --- a/compiler-cli/Cargo.toml +++ b/compiler-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glistix" -version = "0.3.0" +version = "0.4.0" authors = ["PgBiel"] edition = "2021" license-file = "LICENCE" diff --git a/compiler-cli/src/new.rs b/compiler-cli/src/new.rs index 703bac67f..d5bc72517 100644 --- a/compiler-cli/src/new.rs +++ b/compiler-cli/src/new.rs @@ -277,7 +277,7 @@ jobs: }}; # Pick your Glistix version here. - glistix.url = "github:glistix/glistix/v0.3.0"; + glistix.url = "github:glistix/glistix/v0.4.0"; # Submodules # Add any submodules which you use as dependencies here, diff --git a/compiler-core/Cargo.toml b/compiler-core/Cargo.toml index 4d7ee48ca..b55c0c311 100644 --- a/compiler-core/Cargo.toml +++ b/compiler-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glistix-core" -version = "0.3.0" +version = "0.4.0" authors = ["PgBiel"] edition = "2021" license-file = "LICENCE" diff --git a/compiler-wasm/Cargo.toml b/compiler-wasm/Cargo.toml index 9a5a831f4..7ac7b1a37 100644 --- a/compiler-wasm/Cargo.toml +++ b/compiler-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glistix-wasm" -version = "0.3.0" +version = "0.4.0" authors = ["PgBiel"] edition = "2021" license-file = "LICENCE" diff --git a/nix/glistix.nix b/nix/glistix.nix index 05e212081..821ab7876 100644 --- a/nix/glistix.nix +++ b/nix/glistix.nix @@ -27,7 +27,7 @@ in rustPlatform.buildRustPackage { pname = "glistix"; - version = "0.3.0"; + version = "0.4.0"; src = lib.cleanSourceWith { filter = filterPaths; @@ -39,7 +39,7 @@ rustPlatform.buildRustPackage { buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration ]; - cargoHash = "sha256-qIPWYM5te+bTUQm7danPF/hi2eRq6PQZ0fenVHSXkKo="; + cargoHash = "sha256-20NCJVdyBUsGX5eWhvBprHFPYymL3YB/Pght4MJ0MDY="; meta = with lib; { description = "A fork of the Gleam compiler with a Nix backend"; diff --git a/test-package-compiler/Cargo.toml b/test-package-compiler/Cargo.toml index 4cf612d3d..d83593a80 100644 --- a/test-package-compiler/Cargo.toml +++ b/test-package-compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-package-compiler" -version = "0.3.0" +version = "0.4.0" authors = ["PgBiel"] edition = "2021" license-file = "LICENCE"