From 8fe1e1512560a199f709e092b7383daf5d87ccde Mon Sep 17 00:00:00 2001 From: Donne Martin Date: Tue, 31 May 2016 06:59:31 -0400 Subject: [PATCH 1/2] Update docs with latest README --- docs/source/README.rst | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/docs/source/README.rst b/docs/source/README.rst index 25806ebb..0054c4ed 100644 --- a/docs/source/README.rst +++ b/docs/source/README.rst @@ -1,13 +1,13 @@ .. figure:: http://i.imgur.com/vzC5zmA.gif :alt: +SAWS +==== + |Build Status| |Documentation Status| |Dependency Status| |Codecov| |PyPI version| |PyPI| |License| -SAWS -==== - Motivation ---------- @@ -345,7 +345,7 @@ Note: Fuzzy completion currently only works with AWS :alt: Fish-Style Auto-Suggestions -~~~~~~~~~~~~~~~~~~~~~~~~~~~ +--------------------------- ``SAWS`` supports Fish-style auto-suggestions. Use the ``right arrow`` key to complete a suggestion. @@ -354,7 +354,7 @@ key to complete a suggestion. :alt: Executing Shell Commands -~~~~~~~~~~~~~~~~~~~~~~~~ +------------------------ ``SAWS`` allows you to execute shell commands from the ``saws>`` prompt. @@ -362,7 +362,7 @@ Executing Shell Commands :alt: Command History -~~~~~~~~~~~~~~~ +--------------- ``SAWS`` keeps track of commands you enter and stores them in ``~/.saws-history``. Use the up and down arrow keys to cycle through the @@ -432,7 +432,7 @@ Toolbar Options :alt: Windows Support -~~~~~~~~~~~~~~~ +--------------- ``SAWS`` has been tested on Windows 7 and Windows 10. @@ -501,6 +501,18 @@ To view ``SAWS`` ``virtualenv`` and `Docker `__ installation instructions, click `here `__. +Mac OS X 10.11 El Capitan Users +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +There is a known issue with Apple and its included python package +dependencies (more info at https://github.com/pypa/pip/issues/3165). We +are investigating ways to fix this issue but in the meantime, to install +saws, you can run: + +:: + + $ sudo pip install saws --upgrade --ignore-installed six + AWS Credentials and Named Profiles ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ From 915759d86cfb4639aa1cfbd26e54c07d45da644e Mon Sep 17 00:00:00 2001 From: Donne Martin Date: Tue, 31 May 2016 07:00:03 -0400 Subject: [PATCH 2/2] Prep 0.4.1 --- CHANGELOG.md | 19 +++++++++++++++++++ CHANGELOG.rst | 29 +++++++++++++++++++++++++++++ saws/__init__.py | 2 +- 3 files changed, 49 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e71bcee..648b1344 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,25 @@ https://github.com/donnemartin/saws/issues Changelog ========= +0.4.1 (2015-05-31) +------------------ + +### Bug Fixes + +* [#83](https://github.com/donnemartin/saws/pull/83) - Update to `prompt-toolkit` 1.0.0, which includes a number of performance improvements (especially noticeable on Windows) and bug fixes. + +### Updates + +* [#75](https://github.com/donnemartin/saws/pull/75), [#76](https://github.com/donnemartin/saws/pull/76) - Fix groff install and follow Dockerfile best practices. +* [#85](https://github.com/donnemartin/saws/pull/85) - Update packaging dependencies based on semantic versioning. +* [#86](https://github.com/donnemartin/saws/pull/86) - Fix linter issues regarding imports. +* Update list of commands. +* Update INSTALLATION: + * Add install from SOURCE. + * Add note about OS X 10.11 pip issue (now also in README). + * Update intro. +* Update link to style guide in CONTRIBUTING. + 0.4.0 (2015-12-08) ------------------ diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 043b53bc..34bc8a42 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -20,6 +20,35 @@ https://github.com/donnemartin/saws/issues Changelog ========= +0.4.1 (2015-05-31) +------------------ + +Bug Fixes +~~~~~~~~~ + +- `#83 `__ - Update to + ``prompt-toolkit`` 1.0.0, which includes a number of performance + improvements (especially noticeable on Windows) and bug fixes. + +Updates +~~~~~~~ + +- `#75 `__, + `#76 `__ - Fix groff + install and follow Dockerfile best practices. +- `#85 `__ - Update + packaging dependencies based on semantic versioning. +- `#86 `__ - Fix linter + issues regarding imports. +- Update list of commands. +- Update INSTALLATION: + + - Add install from SOURCE. + - Add note about OS X 10.11 pip issue (now also in README). + - Update intro. + +- Update link to style guide in CONTRIBUTING. + 0.4.0 (2015-12-08) ------------------ diff --git a/saws/__init__.py b/saws/__init__.py index 2abc9720..3472c228 100644 --- a/saws/__init__.py +++ b/saws/__init__.py @@ -13,4 +13,4 @@ # ANY KIND, either express or implied. See the License for the specific # language governing permissions and limitations under the License. -__version__ = '0.4.0' +__version__ = '0.4.1'