diff --git a/.github/latest_stable_api b/.github/latest_stable_api index 3b04cfb6..be586341 100644 --- a/.github/latest_stable_api +++ b/.github/latest_stable_api @@ -1 +1 @@ -0.2 +0.3 diff --git a/Cargo.lock b/Cargo.lock index c95f80d7..2c8794e8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -131,7 +131,7 @@ dependencies = [ [[package]] name = "colmena" -version = "0.3.0-pre" +version = "0.3.0" dependencies = [ "async-stream", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 1f5759a7..5126e85f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "colmena" -version = "0.3.0-pre" +version = "0.3.0" authors = ["Zhaofeng Li "] edition = "2018" diff --git a/manual/src/release-notes.md b/manual/src/release-notes.md index 0cda8a82..4454ab37 100644 --- a/manual/src/release-notes.md +++ b/manual/src/release-notes.md @@ -1,6 +1,6 @@ # Release Notes -## Release 0.3.0 (2022/04/??) +## [Release 0.3.0](https://github.com/zhaofengli/colmena/releases/tag/v0.3.0) (2022/04/27) - [Remote builds](https://zhaofengli.github.io/colmena/0.3/features/remote-builds.html) are now supported ([#33](https://github.com/zhaofengli/colmena/issues/33)). - [Streaming evaluation](https://zhaofengli.github.io/colmena/0.3/features/parallelism.html#parallel-evaluation-experimental) powered by [nix-eval-jobs](https://github.com/nix-community/nix-eval-jobs) is now available as an experimental feature (`--evaluator streaming`). diff --git a/package.nix b/package.nix index d54ffea2..36274b64 100644 --- a/package.nix +++ b/package.nix @@ -2,14 +2,14 @@ rustPlatform.buildRustPackage rec { pname = "colmena"; - version = "0.3.0-pre"; + version = "0.3.0"; src = lib.cleanSourceWith { filter = name: type: !(type == "directory" && builtins.elem (baseNameOf name) [ "target" "manual" "integration-tests" ]); src = lib.cleanSource ./.; }; - cargoSha256 = "sha256-C/PB4p+BdyfDnKGMW9kvCzI+IfE3Bw3gZn66epjOROk="; + cargoSha256 = "sha256-ckCArDFjVwVWWK0Ffj0AYe411b9xU33CBc1zeCh2kns="; nativeBuildInputs = [ installShellFiles ];