From 67cbe897075dafc4b621e83828099ec6f1c9e12b Mon Sep 17 00:00:00 2001 From: PgBiel <9021226+PgBiel@users.noreply.github.com> Date: Wed, 12 Jun 2024 19:29:53 -0300 Subject: [PATCH] Bump Glistix version to 0.2.0 (#4) * update glistix version to 0.2.0 * update flake hash * bump supported gleam version --- Cargo.lock | 8 ++++---- README.md | 14 +++++++------- compiler-cli/Cargo.toml | 2 +- compiler-cli/src/new.rs | 2 +- compiler-core/Cargo.toml | 2 +- compiler-wasm/Cargo.toml | 2 +- nix/glistix.nix | 4 ++-- test-package-compiler/Cargo.toml | 2 +- 8 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b5b9ed076..729d8e0c8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -802,7 +802,7 @@ checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" [[package]] name = "glistix" -version = "0.1.0" +version = "0.2.0" dependencies = [ "async-trait", "base16", @@ -849,7 +849,7 @@ dependencies = [ [[package]] name = "glistix-core" -version = "0.1.0" +version = "0.2.0" dependencies = [ "askama", "async-trait", @@ -900,7 +900,7 @@ dependencies = [ [[package]] name = "glistix-wasm" -version = "0.1.0" +version = "0.2.0" dependencies = [ "camino", "console_error_panic_hook", @@ -2238,7 +2238,7 @@ dependencies = [ [[package]] name = "test-package-compiler" -version = "0.1.0" +version = "0.2.0" dependencies = [ "camino", "glistix-core", diff --git a/README.md b/README.md index 5421415ba..0c3538649 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.1.0,** meaning features and fixes from up to that Gleam version are available. +**NOTE:** Glistix's latest stable version currently tracks **Gleam v1.2.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.1.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.2.0). ```sh - nix run 'github:Glistix/glistix/v0.1.0' -- --help + nix run 'github:Glistix/glistix/v0.2.0' -- --help ``` - To install permanently, you can either add `github:Glistix/glistix/v0.1.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.2.0` as an input to your system/Home Manager configuration, or use `nix profile`: ```sh - nix profile install 'github:Glistix/glistix/v0.1.0' + nix profile install 'github:Glistix/glistix/v0.2.0' ``` -3. **With Cargo:** You can use Cargo to compile and install Glistix's latest release (v0.1.0 at the time of writing): +3. **With Cargo:** You can use Cargo to compile and install Glistix's latest release (v0.2.0 at the time of writing): ```sh - cargo install --git https://github.com/glistix/glistix --tag v0.1.0 --locked + cargo install --git https://github.com/glistix/glistix --tag v0.2.0 --locked ``` ## Table of Contents diff --git a/compiler-cli/Cargo.toml b/compiler-cli/Cargo.toml index 13744a857..5cf84391a 100644 --- a/compiler-cli/Cargo.toml +++ b/compiler-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glistix" -version = "0.1.0" +version = "0.2.0" authors = ["PgBiel"] edition = "2021" license-file = "LICENCE" diff --git a/compiler-cli/src/new.rs b/compiler-cli/src/new.rs index f815bbd11..380b3dece 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.1.0"; + glistix.url = "github:glistix/glistix/v0.2.0"; # Submodules # Add any submodules which you use as dependencies here, diff --git a/compiler-core/Cargo.toml b/compiler-core/Cargo.toml index d1cd1cebb..e71036ce9 100644 --- a/compiler-core/Cargo.toml +++ b/compiler-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glistix-core" -version = "0.1.0" +version = "0.2.0" authors = ["PgBiel"] edition = "2021" license-file = "LICENCE" diff --git a/compiler-wasm/Cargo.toml b/compiler-wasm/Cargo.toml index 9e4d53fed..90ebabac8 100644 --- a/compiler-wasm/Cargo.toml +++ b/compiler-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glistix-wasm" -version = "0.1.0" +version = "0.2.0" authors = ["PgBiel"] edition = "2021" license-file = "LICENCE" diff --git a/nix/glistix.nix b/nix/glistix.nix index d7cfbb73f..fd49f03cd 100644 --- a/nix/glistix.nix +++ b/nix/glistix.nix @@ -27,7 +27,7 @@ in rustPlatform.buildRustPackage { pname = "glistix"; - version = "0.1.0"; + version = "0.2.0"; src = lib.cleanSourceWith { filter = filterPaths; @@ -39,7 +39,7 @@ rustPlatform.buildRustPackage { buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration ]; - cargoHash = "sha256-Mn6UtLjcAEPGYUOckEVanagmxCEjlsLInykdD0bJ8OM="; + cargoHash = "sha256-COZ3EwLZCM/mC5Okulb4FX+7c9CpYwGIhFVZa2U3BsI="; 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 72eeef744..289d509c6 100644 --- a/test-package-compiler/Cargo.toml +++ b/test-package-compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-package-compiler" -version = "0.1.0" +version = "0.2.0" authors = ["PgBiel"] edition = "2021" license-file = "LICENCE"