Skip to content

Commit

Permalink
v1.6.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
lpil committed Nov 10, 2024
1 parent 0790e7c commit 91ef02e
Show file tree
Hide file tree
Showing 14 changed files with 23 additions and 19 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## v1.6.0-rc1 - 2024-11-10

### Build tool

Expand Down
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.

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 = "gleam"
version = "1.5.0"
version = "1.6.0-rc1"
authors = ["Louis Pilfold <[email protected]>"]
edition = "2021"
license-file = "LICENCE"
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 = "gleam-core"
version = "1.5.0"
version = "1.6.0-rc1"
authors = ["Louis Pilfold <[email protected]>"]
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 = "gleam-wasm"
version = "1.5.0"
version = "1.6.0-rc1"
authors = ["Louis Pilfold <[email protected]>"]
edition = "2021"
license-file = "LICENCE"
Expand Down
8 changes: 6 additions & 2 deletions test-helpers-rs/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
use camino::{Utf8Path, Utf8PathBuf};
use gleam_core::io::{memory::InMemoryFileSystem, Content, FileSystemWriter};
use gleam_core::{
io::{memory::InMemoryFileSystem, Content, FileSystemWriter},
version::COMPILER_VERSION,
};
use itertools::Itertools;
use regex::Regex;
use std::{collections::HashMap, fmt::Write, sync::OnceLock};
Expand Down Expand Up @@ -53,7 +56,8 @@ impl TestCompileOutput {
.replace("\\\\", "/");
let line_number = caps.get(2).expect("line number").as_str();
format!("-file(\"{path}\", {line_number}).")
});
})
.replace(COMPILER_VERSION, "<gleam compiler version string>");
buffer.push_str(&text)
}
};
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 = "1.5.0"
version = "1.6.0-rc1"
authors = ["Louis Pilfold <[email protected]>"]
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 = "1.5.0"
version = "1.6.0-rc1"
authors = ["Louis Pilfold <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ expression: "./cases/with_dep"


//// with_dep/build/dev/erlang/gleam_version
1.5.0
<gleam compiler version string>
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ expression: "./cases/with_dep"


//// with_dep/build/lsp/erlang/gleam_version
1.5.0
<gleam compiler version string>
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ expression: "./cases/with_dep"


//// with_dep/build/prod/erlang/gleam_version
1.5.0
<gleam compiler version string>
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ expression: "./cases/with_dev_dep"


//// with_dev_dep/build/dev/erlang/gleam_version
1.5.0
<gleam compiler version string>
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ expression: "./cases/with_dev_dep"


//// with_dev_dep/build/lsp/erlang/gleam_version
1.5.0
<gleam compiler version string>
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ expression: "./cases/with_dev_dep"


//// with_dev_dep/build/prod/erlang/gleam_version
1.5.0
<gleam compiler version string>

0 comments on commit 91ef02e

Please sign in to comment.