Skip to content

Commit

Permalink
also fix updating default.nix version for a release
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 authored and mergify[bot] committed Sep 30, 2023
1 parent 99c3472 commit da0b544
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/create-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ if [[ "$unpushed_commits" != "" ]]; then
echo -e "\nThere are unpushed changes, exiting:\n$unpushed_commits" >&2
exit 1
fi
sed -i -e "s!^version = \".*\"\$!version = \"${version}\"!" pyproject.toml default.nix
sed -i -e "s!version = \".*\"\$!version = \"${version}\"!" pyproject.toml default.nix
git add pyproject.toml default.nix
nix flake check -vL
nix develop -c pytest -s .
Expand Down
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

pkgs.python311.pkgs.buildPythonApplication {
pname = "nix-update";
version = "0.19.3";
version = "1.0.0";
src = ./.;
format = "pyproject";
buildInputs = [ pkgs.makeWrapper ];
Expand Down

0 comments on commit da0b544

Please sign in to comment.