summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--changelog.rst2
-rw-r--r--pgcli/__init__.py2
-rw-r--r--release.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/changelog.rst b/changelog.rst
index 32511029..7d088398 100644
--- a/changelog.rst
+++ b/changelog.rst
@@ -1,5 +1,5 @@
==================
-4.0.1 (2023-11-29)
+4.0.1 (2023-11-30)
==================
Internal:
diff --git a/pgcli/__init__.py b/pgcli/__init__.py
index ce1305bf..76ad18b8 100644
--- a/pgcli/__init__.py
+++ b/pgcli/__init__.py
@@ -1 +1 @@
-__version__ = "4.0.0"
+__version__ = "4.0.1"
diff --git a/release.py b/release.py
index 4237efd9..42a72a9c 100644
--- a/release.py
+++ b/release.py
@@ -57,7 +57,7 @@ def version(version_file):
def commit_for_release(version_file, ver):
run_step("git", "reset")
- run_step("git", "add", version_file)
+ run_step("git", "add", "-u")
run_step("git", "commit", "--message", "Releasing version {}".format(ver))