Compare commits

..

No commits in common. "a23147556b11ab1b89ccf5aad6c60fcf9474f076" and "7d304f6e1ea9b1829eef0c98786f8a89af1dc60d" have entirely different histories.

3 changed files with 4 additions and 5 deletions

View file

@ -1,5 +1,5 @@
[workspace.package]
version = "0.2.12"
version = "0.2.11"
[workspace]
resolver = "2"

View file

@ -56,7 +56,7 @@
frontendCargoDeps = rustPlatform.fetchCargoVendor {
src = ./.;
name = "trictrac-frontend-vendor";
hash = "sha256-neJh0ZQGa5LNY8vBu3kYkM+ARkXOW/EHx8sPBOsWsgE=";
hash = "sha256-lapxu9R6s2ASGdpnU0dht4jxewQjbrXlAkpFf/GsK/Q=";
};
in
final.stdenv.mkDerivation {
@ -103,7 +103,7 @@
trictrac = with final; rustPlatform.buildRustPackage {
pname = "trictrac";
version = "0.2.12"; # trictrac-version
version = "0.2.11"; # trictrac-version
src = ./.;
nativeBuildInputs = [ pkg-config ];

View file

@ -6,12 +6,11 @@
# Usage: just bump 0.2.12
# After running, finish with: git flow release finish <version>
bump version:
git flow release start {{version}}
sed -i '/^\[workspace\.package\]/,/^\[/{s/^version = ".*"/version = "{{version}}"/}' Cargo.toml
sed -i 's/version = "[0-9.]*"; # trictrac-version/version = "{{version}}"; # trictrac-version/' flake.nix
git flow release start {{version}}
git add Cargo.toml flake.nix
git commit -m "chore: bump version to {{version}}"
git flow release start {{version}}
@echo "Done. Finish with: git flow release finish {{version}}"
doc: