1
1
mirror of https://github.com/dbcli/pgcli.git synced 2024-10-04 09:17:08 +03:00

Release rev 0.2

This commit is contained in:
Amjith Ramanujam 2014-11-30 22:50:30 -08:00
parent e73e05e392
commit 02914bb81b
2 changed files with 4 additions and 4 deletions

6
TODO
View File

@ -1,9 +1,7 @@
* [ ] Add more complex slash commands such as \d <table_name>.
* [ ] Update README.
* [ ] Upload rev 2 to PyPI.
* [ ] Add a new trigger for M-/ that does dumb completion.
* [ ] Find a way to add documentation to sql commands. This could get tricky.
* [ ] Add a lot more SQL keywords to auto-completion (Read the postgres docs)
* [ ] Find a way to add documentation to sql commands. This could get tricky.
* [ ] Add tests for smart completion.
* [ ] Detect a '.' and parse the word before it and get it's real name.
* [] Refactor the execution and output into a separate class.
@ -14,6 +12,8 @@
* A dict with special commands as keys.
* The value can either be a string or a callable.
* [X] Deal with commands that have no return rows (such as delete, begin transaction etc).
* [X] Update README.
* [X] Upload rev 2 to PyPI.
* [X] Add borders around the table.
* [X] Investigate why having a space in the beginning of the line breaks everything.
* [X] Test if the special comands are autocompleted correctly.

View File

@ -1 +1 @@
__version__ = '0.2-dev'
__version__ = '0.2'