Skip to content

Commit

Permalink
Bump version to 0.20240824.0
Browse files Browse the repository at this point in the history
  • Loading branch information
taoky committed Aug 24, 2024
1 parent b275959 commit 121dc66
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 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 = "tsumugu"
version = "0.0.1"
version = "0.20240824.0"
edition = "2021"
description = "A HTTP(S) syncing tool with lower overhead, for OSS mirrors"

Expand Down
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,8 @@ release:
ifndef version
$(error version is not set. Usage: make release version=<version>)
endif
cargo set-version $(version)
@full_version=$(shell echo $(version) | grep -q '\.' && echo "0.$(version)" || echo "0.$(version).0"); \
echo $$full_version; \
cargo set-version $$full_version; \
git commit -a -m "Bump version to $$full_version" ; \
git tag $(version)

0 comments on commit 121dc66

Please sign in to comment.