summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmjith Ramanujam <amjith.r@gmail.com>2017-05-26 20:34:38 -0700
committerGitHub <noreply@github.com>2017-05-26 20:34:38 -0700
commit565dc02a16c98042dd9267e92c835dcbfa423cd6 (patch)
tree55de2596b02970e1f37b1567040e2a4dc4581cc9
parent6a58bd08d98bbf4f812dc347537c8d4ab3663cc7 (diff)
parent567e16f4e447f8aa6085fa46ad8a2007cb94bca7 (diff)
Merge pull request #719 from dbcli/j-bennet/release-1.6.0
Preparing to release 1.6.0.
-rw-r--r--changelog.rst5
-rw-r--r--setup.py20
2 files changed, 15 insertions, 10 deletions
diff --git a/changelog.rst b/changelog.rst
index cff7db42..cd6a1d44 100644
--- a/changelog.rst
+++ b/changelog.rst
@@ -1,6 +1,11 @@
Upcoming
========
+* TBD
+
+1.6.0
+=====
+
Features:
---------
* Add time option for prompt (Thanks: `Gustavo Castro`_)
diff --git a/setup.py b/setup.py
index 26acbb2a..aba5b260 100644
--- a/setup.py
+++ b/setup.py
@@ -12,16 +12,16 @@ with open('pgcli/__init__.py', 'rb') as f:
description = 'CLI for Postgres Database. With auto-completion and syntax highlighting.'
install_requirements = [
- 'pgspecial>=1.7.0',
- 'click >= 4.1',
- 'Pygments >= 2.0', # Pygments has to be Capitalcased. WTF?
- 'prompt_toolkit>=1.0.10,<1.1.0',
- 'psycopg2 >= 2.5.4',
- 'sqlparse >=0.2.2,<0.3.0',
- 'configobj >= 5.0.6',
- 'humanize >= 0.5.1',
- 'wcwidth >= 0.1.6',
- ]
+ 'pgspecial>=1.8.0',
+ 'click >= 4.1',
+ 'Pygments >= 2.0', # Pygments has to be Capitalcased. WTF?
+ 'prompt_toolkit>=1.0.10,<1.1.0',
+ 'psycopg2 >= 2.5.4',
+ 'sqlparse >=0.2.2,<0.3.0',
+ 'configobj >= 5.0.6',
+ 'humanize >= 0.5.1',
+ 'wcwidth >= 0.1.6',
+]
# setproctitle is used to mask the password when running `ps` in command line.