summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2023-06-02 19:08:43 -0400
committerDan Davison <dandavison7@gmail.com>2023-06-02 19:08:43 -0400
commit4597dc4c6bc5b82cca3263dc0f1ce07711e6ca32 (patch)
tree5453d840b4f432aa9f9df46cc4ed67d3b65db93c
parenteebddddb0a8c41f1225d9cd9a50d70128642623f (diff)
Bump versions0.16.2
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--etc/release.Makefile1
3 files changed, 3 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index b8fc7da2..76ed6184 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -531,7 +531,7 @@ dependencies = [
[[package]]
name = "git-delta"
-version = "0.16.1"
+version = "0.16.2"
dependencies = [
"ansi_colours",
"ansi_term",
diff --git a/Cargo.toml b/Cargo.toml
index 06de4b4a..7aa091bd 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -8,7 +8,7 @@ edition = "2018"
homepage = "https://github.com/dandavison/delta"
license = "MIT"
repository = "https://github.com/dandavison/delta"
-version = "0.16.1"
+version = "0.16.2"
[[bin]]
name = "delta"
diff --git a/etc/release.Makefile b/etc/release.Makefile
index 747160e1..3ed0b2b3 100644
--- a/etc/release.Makefile
+++ b/etc/release.Makefile
@@ -28,6 +28,7 @@ bump-version: $(BUMP_VERSION_SENTINEL)
$(BUMP_VERSION_SENTINEL):
@echo Bumping version in Cargo.toml
sed -i -E "s,^version = \"$$DELTA_OLD_VERSION\",version = \"$$DELTA_NEW_VERSION\",g" Cargo.toml
+ cargo build --release
git add Cargo.toml Cargo.lock
git commit -m "Bump version" || true
touch $(BUMP_VERSION_SENTINEL)