Skip to content

Commit

Permalink
Bump Glistix version to 0.2.0 (#4)
Browse files Browse the repository at this point in the history
* update glistix version to 0.2.0

* update flake hash

* bump supported gleam version
  • Loading branch information
PgBiel authored Jun 12, 2024
1 parent f029c57 commit 67cbe89
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**.

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion compiler-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glistix"
version = "0.1.0"
version = "0.2.0"
authors = ["PgBiel"]
edition = "2021"
license-file = "LICENCE"
Expand Down
2 changes: 1 addition & 1 deletion compiler-cli/src/new.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion compiler-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glistix-core"
version = "0.1.0"
version = "0.2.0"
authors = ["PgBiel"]
edition = "2021"
license-file = "LICENCE"
Expand Down
2 changes: 1 addition & 1 deletion compiler-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glistix-wasm"
version = "0.1.0"
version = "0.2.0"
authors = ["PgBiel"]
edition = "2021"
license-file = "LICENCE"
Expand Down
4 changes: 2 additions & 2 deletions nix/glistix.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ in

rustPlatform.buildRustPackage {
pname = "glistix";
version = "0.1.0";
version = "0.2.0";

src = lib.cleanSourceWith {
filter = filterPaths;
Expand All @@ -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";
Expand Down
2 changes: 1 addition & 1 deletion test-package-compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-package-compiler"
version = "0.1.0"
version = "0.2.0"
authors = ["PgBiel"]
edition = "2021"
license-file = "LICENCE"
Expand Down

0 comments on commit 67cbe89

Please sign in to comment.