forked from DGNum/colmena
Release 0.3.0
This commit is contained in:
parent
ff417c9783
commit
fbefc48d89
5 changed files with 6 additions and 6 deletions
2
.github/latest_stable_api
vendored
2
.github/latest_stable_api
vendored
|
@ -1 +1 @@
|
|||
0.2
|
||||
0.3
|
||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -131,7 +131,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "colmena"
|
||||
version = "0.3.0-pre"
|
||||
version = "0.3.0"
|
||||
dependencies = [
|
||||
"async-stream",
|
||||
"async-trait",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "colmena"
|
||||
version = "0.3.0-pre"
|
||||
version = "0.3.0"
|
||||
authors = ["Zhaofeng Li <hello@zhaofeng.li>"]
|
||||
edition = "2018"
|
||||
|
||||
|
|
|
@ -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`).
|
||||
|
|
|
@ -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 ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue