summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIrina Truong <i.chernyavska@gmail.com>2019-12-04 09:24:17 -0800
committerGitHub <noreply@github.com>2019-12-04 09:24:17 -0800
commit51d4d4a04c1bc50238accb49788039e43b9b84d5 (patch)
tree73f5fdda55e4adb86f92a3019bcc9477da7fe968
parent0f969aba0cbf9b1a93c679a442e74e13f00a1702 (diff)
J bennet/release 2.2.0 (#1126)
* Changelog. * Bump pgspecial. * Restrict prompt_toolkit to <3.0.0.
-rw-r--r--changelog.rst4
-rw-r--r--setup.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/changelog.rst b/changelog.rst
index 69d98b1c..a8a23cb5 100644
--- a/changelog.rst
+++ b/changelog.rst
@@ -1,5 +1,5 @@
-Upcoming:
-=========
+2.2.0:
+======
Features:
---------
diff --git a/setup.py b/setup.py
index abcc3b37..0284ff79 100644
--- a/setup.py
+++ b/setup.py
@@ -13,10 +13,10 @@ with open("pgcli/__init__.py", "rb") as f:
description = "CLI for Postgres Database. With auto-completion and syntax highlighting."
install_requirements = [
- "pgspecial>=1.11.5",
+ "pgspecial>=1.11.8",
"click >= 4.1",
"Pygments >= 2.0", # Pygments has to be Capitalcased. WTF?
- "prompt_toolkit>=2.0.6,<2.1.0",
+ "prompt_toolkit>=2.0.6,<3.0.0",
"psycopg2 >= 2.8",
"sqlparse >=0.3.0,<0.4",
"configobj >= 5.0.6",