summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIrina Truong <i.chernyavska@gmail.com>2023-10-30 20:34:14 -0700
committerIrina Truong <i.chernyavska@gmail.com>2023-10-30 20:34:14 -0700
commit04ca41a26259a83ebc027e8d16e4a63856ec6055 (patch)
treeaac9e87c59cb8bc7e3cd429e9200c3ca017cb591
parent525487c36a502f418cc77a6a905acbfdd1d3b03b (diff)
Releasing version 4.0.1v4.0.1
-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))