Skip to content

Commit

Permalink
bump glistix version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PgBiel committed Jul 29, 2024
1 parent b451545 commit 4d60420
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 17 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.

12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.2.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.3.0).

```sh
nix run 'github:Glistix/glistix/v0.2.0' -- --help
nix run 'github:Glistix/glistix/v0.3.0' -- --help
```

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`:
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`:

```sh
nix profile install 'github:Glistix/glistix/v0.2.0'
nix profile install 'github:Glistix/glistix/v0.3.0'
```

3. **With Cargo:** You can use Cargo to compile and install Glistix's latest release (v0.2.0 at the time of writing):
3. **With Cargo:** You can use Cargo to compile and install Glistix's latest release (v0.3.0 at the time of writing):
```sh
cargo install --git https://github.com/glistix/glistix --tag v0.2.0 --locked
cargo install --git https://github.com/glistix/glistix --tag v0.3.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.2.0"
version = "0.3.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.2.0";
glistix.url = "github:glistix/glistix/v0.3.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.2.0"
version = "0.3.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.2.0"
version = "0.3.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.2.0";
version = "0.3.0";

src = lib.cleanSourceWith {
filter = filterPaths;
Expand All @@ -39,7 +39,7 @@ rustPlatform.buildRustPackage {
buildInputs = [ openssl ] ++
lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];

cargoHash = "sha256-rifIMUYfnmVCaS+OaQ3POEaZj00cU3Biaz2ZKj2eFL4=";
cargoHash = "sha256-xSnnPR9VKx8htUCq+M7ejw94vi+mOEbUCpqHyyK7s4U=";

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.2.0"
version = "0.3.0"
authors = ["PgBiel"]
edition = "2021"
license-file = "LICENCE"
Expand Down

0 comments on commit 4d60420

Please sign in to comment.