Release 0.3.0

This commit is contained in:
Zhaofeng Li 2022-04-27 14:10:58 -07:00
parent ff417c9783
commit fbefc48d89
5 changed files with 6 additions and 6 deletions

View file

@ -1 +1 @@
0.2
0.3

2
Cargo.lock generated
View file

@ -131,7 +131,7 @@ dependencies = [
[[package]]
name = "colmena"
version = "0.3.0-pre"
version = "0.3.0"
dependencies = [
"async-stream",
"async-trait",

View file

@ -1,6 +1,6 @@
[package]
name = "colmena"
version = "0.3.0-pre"
version = "0.3.0"
authors = ["Zhaofeng Li <hello@zhaofeng.li>"]
edition = "2018"

View file

@ -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`).

View file

@ -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 ];