From beea657241eb61d980e87e72920b6a31dee01add Mon Sep 17 00:00:00 2001 From: PgBiel <9021226+PgBiel@users.noreply.github.com> Date: Mon, 23 Dec 2024 17:10:17 -0300 Subject: [PATCH] bump glistix to 0.5.0 (#31) --- Cargo.lock | 10 +++++----- 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, 19 insertions(+), 19 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7b49a4753..f42184217 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "addr2line" @@ -793,7 +793,7 @@ checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd" [[package]] name = "glistix" -version = "0.4.0" +version = "0.5.0" dependencies = [ "async-trait", "base16", @@ -841,7 +841,7 @@ dependencies = [ [[package]] name = "glistix-core" -version = "0.4.0" +version = "0.5.0" dependencies = [ "askama", "async-trait", @@ -892,7 +892,7 @@ dependencies = [ [[package]] name = "glistix-wasm" -version = "0.4.0" +version = "0.5.0" dependencies = [ "camino", "console_error_panic_hook", @@ -2269,7 +2269,7 @@ dependencies = [ [[package]] name = "test-package-compiler" -version = "0.4.0" +version = "0.5.0" dependencies = [ "camino", "glistix-core", diff --git a/README.md b/README.md index a4e6abb77..dd9c1913d 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,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.4.1,** meaning features and fixes from up to that Gleam version are available. +**NOTE:** Glistix's latest stable version currently tracks **Gleam v1.5.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**. @@ -66,22 +66,22 @@ You can install Glistix in one of the following ways. 1. **From GitHub Releases:** If you're using Linux (any distro, including 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:** 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). +2. **With Nix flakes:** 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.5.0). ```sh - nix run 'github:Glistix/glistix/v0.4.0' -- --help + nix run 'github:Glistix/glistix/v0.5.0' -- --help ``` - 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`: + To install permanently, you can either add `github:Glistix/glistix/v0.5.0` as an input to your system/Home Manager configuration, or use `nix profile`: ```sh - nix profile install 'github:Glistix/glistix/v0.4.0' + nix profile install 'github:Glistix/glistix/v0.5.0' ``` -3. **With Cargo:** You can use Cargo to compile and install Glistix's latest release (v0.4.0 at the time of writing): +3. **With Cargo:** You can use Cargo to compile and install Glistix's latest release (v0.5.0 at the time of writing): ```sh - cargo install --git https://github.com/glistix/glistix --tag v0.4.0 --locked + cargo install --git https://github.com/glistix/glistix --tag v0.5.0 --locked ``` ## Table of Contents diff --git a/compiler-cli/Cargo.toml b/compiler-cli/Cargo.toml index c543c57b3..824e522ec 100644 --- a/compiler-cli/Cargo.toml +++ b/compiler-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glistix" -version = "0.4.0" +version = "0.5.0" authors = ["PgBiel"] edition = "2021" license-file = "LICENCE" diff --git a/compiler-cli/src/new.rs b/compiler-cli/src/new.rs index d5bc72517..dc0449bc4 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.4.0"; + glistix.url = "github:glistix/glistix/v0.5.0"; # Submodules # Add any submodules which you use as dependencies here, diff --git a/compiler-core/Cargo.toml b/compiler-core/Cargo.toml index b55c0c311..50b74c538 100644 --- a/compiler-core/Cargo.toml +++ b/compiler-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glistix-core" -version = "0.4.0" +version = "0.5.0" authors = ["PgBiel"] edition = "2021" license-file = "LICENCE" diff --git a/compiler-wasm/Cargo.toml b/compiler-wasm/Cargo.toml index 7ac7b1a37..da3643ff4 100644 --- a/compiler-wasm/Cargo.toml +++ b/compiler-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glistix-wasm" -version = "0.4.0" +version = "0.5.0" authors = ["PgBiel"] edition = "2021" license-file = "LICENCE" diff --git a/nix/glistix.nix b/nix/glistix.nix index 01fc6163d..1388ebf11 100644 --- a/nix/glistix.nix +++ b/nix/glistix.nix @@ -27,7 +27,7 @@ in rustPlatform.buildRustPackage { pname = "glistix"; - version = "0.4.0"; + version = "0.5.0"; src = lib.cleanSourceWith { filter = filterPaths; @@ -39,7 +39,7 @@ rustPlatform.buildRustPackage { buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration ]; - cargoHash = "sha256-zzspempE5quAhsx0XHQAm3NQ02zJyKWCQiYdlCByvRs="; + cargoHash = "sha256-Xty0NVTiGyBEGlAT834rfI56+876asCJRuijnmVVmYE="; 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 d83593a80..78762340d 100644 --- a/test-package-compiler/Cargo.toml +++ b/test-package-compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-package-compiler" -version = "0.4.0" +version = "0.5.0" authors = ["PgBiel"] edition = "2021" license-file = "LICENCE"