Skip to content

Commit

Permalink
Release 0.2.1
Browse files Browse the repository at this point in the history
This release fixes the issue (#50) where sandboxed documentation
builds [1] fail when using the unstable Nixpkgs channel.

[1] NixOS/nixpkgs#149532
  • Loading branch information
zhaofengli committed Jan 26, 2022
1 parent 6877bb0 commit 52cc4fb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "colmena"
version = "0.2.0"
version = "0.2.1"
authors = ["Zhaofeng Li <[email protected]>"]
edition = "2018"

Expand Down
4 changes: 2 additions & 2 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ in {
inherit (pkgs) lib stdenv rustPlatform;
in rustPlatform.buildRustPackage rec {
pname = "colmena";
version = "0.2.0";
version = "0.2.1";

# We guarantee CLI and Nix API stability for the same minor version
apiVersion = builtins.concatStringsSep "." (lib.take 2 (lib.splitString "." version));
Expand All @@ -20,7 +20,7 @@ in rustPlatform.buildRustPackage rec {
src = lib.cleanSource ./.;
};

cargoSha256 = "sha256-ZNSg3hXWKHNQ9yHJS1qW3tFYwzU4ZDa1N0yvoGLmWns=";
cargoSha256 = "sha256-wMC2GAVVxkwrgJtOIJL0P+Uxh+ouW4VwLDrXJlD10AA=";

postInstall = lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
mkdir completions
Expand Down

0 comments on commit 52cc4fb

Please sign in to comment.