Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to Glistix 0.6.0 #37

Merged
merged 1 commit into from
Jan 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 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 @@ -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.5.1,** meaning features and fixes from up to that Gleam version are available.
**NOTE:** Glistix's latest stable version currently tracks **Gleam v1.6.3,** 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 Down Expand Up @@ -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.5.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.6.0).

```sh
nix run 'github:Glistix/glistix/v0.5.0' -- --help
nix run 'github:Glistix/glistix/v0.6.0' -- --help
```

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`:
To install permanently, you can either add `github:Glistix/glistix/v0.6.0` as an input to your system/Home Manager configuration, or use `nix profile`:

```sh
nix profile install 'github:Glistix/glistix/v0.5.0'
nix profile install 'github:Glistix/glistix/v0.6.0'
```

3. **With Cargo:** You can use Cargo to compile and install Glistix's latest release (v0.5.0 at the time of writing):
3. **With Cargo:** You can use Cargo to compile and install Glistix's latest release (v0.6.0 at the time of writing):

```sh
cargo install --git https://github.com/glistix/glistix --tag v0.5.0 --locked
cargo install --git https://github.com/glistix/glistix --tag v0.6.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.5.0"
version = "0.6.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 @@ -286,7 +286,7 @@ jobs:
}};

# Pick your Glistix version here.
glistix.url = "github:glistix/glistix/v0.5.0";
glistix.url = "github:glistix/glistix/v0.6.0";

# Submodules
# Add any submodules which you use as dependencies here,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
source: compiler-cli/src/new/tests.rs
expression: "crate::fs::read(Utf8PathBuf::from_path_buf(file_path.to_path_buf()).expect(\"Non Utf8 Path\"),).unwrap()"
snapshot_kind: text
---
# Make sure to run "nix flake update" at least once to generate your flake.lock.
# Run your main function from Nix by importing this flake as follows:
Expand All @@ -26,7 +25,7 @@ snapshot_kind: text
};

# Pick your Glistix version here.
glistix.url = "github:glistix/glistix/v0.5.0";
glistix.url = "github:glistix/glistix/v0.6.0";

# Submodules
# Add any submodules which you use as dependencies here,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
source: compiler-cli/src/new/tests.rs
expression: "crate::fs::read(Utf8PathBuf::from_path_buf(file_path.to_path_buf()).expect(\"Non Utf8 Path\"),).unwrap()"
snapshot_kind: text
---
# Make sure to run "nix flake update" at least once to generate your flake.lock.
# Run your main function from Nix by importing this flake as follows:
Expand All @@ -26,7 +25,7 @@ snapshot_kind: text
};

# Pick your Glistix version here.
glistix.url = "github:glistix/glistix/v0.5.0";
glistix.url = "github:glistix/glistix/v0.6.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.5.0"
version = "0.6.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.5.0"
version = "0.6.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 @@ -29,7 +29,7 @@ in

rustPlatform.buildRustPackage {
pname = "glistix";
version = "0.5.0";
version = "0.6.0";

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

cargoHash = "sha256-g7deHhgIUReUEuAc2pk2HMAsGKXkyZrOg0/FArwrlRw=";
cargoHash = "sha256-N8OwA+HRYMxzEBY8lfHkQ5zT/XVhNPCkrcwKzUExEXY=";

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.5.0"
version = "0.6.0"
authors = ["PgBiel"]
edition = "2021"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion test-project-compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-project-compiler"
version = "0.5.0"
version = "0.6.0"
authors = ["PgBiel"]
edition = "2021"
license = "Apache-2.0"
Expand Down
Loading