···13581358- `true` and `false` can no longer be used as pattern matching variables, to
13591359 avoid accidental uses of incorrect syntax that is popular in other languages.
13601360 An error will hint about using Gleam's `True` and `False` values instead.
13611361-- You can now remove build artifacts using the new `gleam clean` command.
13611361+- You can now remove build artefacts using the new `gleam clean` command.
13621362- The `compile-package` can now generate `package.app` files and compile source
13631363 modules to `.beam` bytecode files.
13641364- The flags that `compile-package` accepts have changed.
···420420 packages: Vec<String>,
421421 },
422422423423- /// Delete any build artifacts for this project
423423+ /// Delete any build artefacts for this project
424424 Clean,
425425426426 /// Run the language server, to be used by editors
···136136 }
137137138138 /// A path to a special file that contains the version of gleam
139139- /// that last built the artifacts along with build-impacting
139139+ /// that last built the artefacts along with build-impacting
140140 /// configuration, such as whether to generate source maps. If
141141 /// this file does not match the current version of gleam we
142142 /// will rebuild from scratch
···22// SPDX-FileCopyrightText: 2022 The Gleam contributors
3344/// The current version of the gleam compiler. If this does not match what is
55-/// already in the build folder we will not reuse any cached artifacts and
55+/// already in the build folder we will not reuse any cached artefacts and
66/// instead build from scratch
77pub const COMPILER_VERSION: &str = env!("CARGO_PKG_VERSION");
···136136A bad actor could attempt to cause a malicious or modified binary to be
137137published to GitHub Releases, or replace release assets after build.
138138139139-- The release workflow uses GitHub OIDC and artifact attestations to produce
139139+- The release workflow uses GitHub OIDC and artefact attestations to produce
140140 provenance for release assets, published alongside release archives as
141141 `.sigstore` files.
142142- Checksums are provided for release archives for users' integrity checking.