summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIrina Truong <i.chernyavska@gmail.com>2018-07-14 12:57:26 -0700
committerGitHub <noreply@github.com>2018-07-14 12:57:26 -0700
commitdcd2d039888a4a9e268ac63cb32005d7bc412985 (patch)
tree3de4d15ef28c4c99a28103e3faef330d07f10376
parent5491d288fc7ea3a512a69c1da0b27d0d77c107e4 (diff)
parentc17bcd66c83e21bf591b469bc2763e4aaf110532 (diff)
Merge pull request #907 from dbcli/meeuw/release-1.10.0
Changes to release 1.10.0
-rw-r--r--MANIFEST.in2
-rw-r--r--changelog.rst15
-rw-r--r--setup.py2
3 files changed, 12 insertions, 7 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index be32b95d..1c5f697c 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,2 +1,2 @@
include LICENSE.txt AUTHORS changelog.rst
-recursive-include tests *
+recursive-include tests *.py *.txt *.feature *.ini
diff --git a/changelog.rst b/changelog.rst
index 412faebc..9464679a 100644
--- a/changelog.rst
+++ b/changelog.rst
@@ -1,21 +1,26 @@
-Upcoming:
-=========
+Upcoming
+========
+
+TODO
+
+1.10.0
+======
Features:
---------
* Add quit commands to the completion menu. (Thanks: `Jason Ribeiro`_)
* Add table formats to ``\T`` completion. (Thanks: `Jason Ribeiro`_)
+* Support `\\ev``, ``\ef`` (#754). (Thanks: `Catherine Devlin`_)
+* Add ``application_name`` to help identify pgcli connection to database (issue #868) (Thanks: `François Pietka`_)
+* Add `--user` option, duplicate of `--username`, the same cli option like `psql` (Thanks: `Alexandr Korsak`_)
Internal changes:
-----------------
* Mark tests requiring a running database server as dbtest (Thanks: `Dick Marinus`_)
-* Add ``application_name`` to help identify pgcli connection to database (issue #868) (Thanks: `François Pietka`_)
-* Support `\\ev``, ``\ef`` (issue #) (Thanks: `Catherine Devlin`_)
* Add an is_special command flag to MetaQuery (Thanks: `Rishi Ramraj`_)
* Ported Destructive Warning from mycli.
* Refactor Destructive Warning behave tests (Thanks: `Dick Marinus`_)
-* Add `--user` option, duplicate of `--username`, the same cli option like `psql` (Thanks: `Alexandr Korsak`_)
Bug Fixes:
----------
diff --git a/setup.py b/setup.py
index 7845724d..3e68ee44 100644
--- a/setup.py
+++ b/setup.py
@@ -21,7 +21,7 @@ install_requirements = [
'configobj >= 5.0.6',
'humanize >= 0.5.1',
'cli_helpers[styles] >= 1.0.1',
- 'keyring >= 12.2.0'
+ 'keyring >= 11.0.0'
]