Skip to content

Commit

Permalink
Bumped version. Updated README files and CHANGELOG.
Browse files Browse the repository at this point in the history
  • Loading branch information
CleanCut committed Jul 23, 2014
1 parent 705429c commit 2789ca9
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 2 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 1.3.0 - 23 July 2014

- Bash-completion and ZSH-completion support for options and test targets.
Issue #7.

Version 1.2.1 - 20 July 2014

- Multiline docstrings (with -vv or -vvv) on test methods are now handled
Expand All @@ -23,7 +28,8 @@ unittest's quirky discovery implementation that we want to fix in the future.

Version 1.1.0 - 17 July 2014

- Configuration file support, originally contributed by Tom Barron - Issues #20, #23, #24
- Configuration file support, originally contributed by Tom Barron - Issues
#20, #23, #24


Version 1.0.2 - 6 July 2014
Expand Down
1 change: 1 addition & 0 deletions README-pypi.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Features
- **Powerful** - Multi-target + auto-discovery.
- **Traditional** - Use the normal ``unittest`` classes and methods for your unit tests.
- **Descriptive** - Four verbosity levels, from just dots to full docstring output.
- **Convenient** - Bash-completion and ZSH-completion of options and test targets.
- **Thorough** - Built-in, optional integration with `coverage`_
- **Modern** - Supports Python 2.7, 3.3, 3.4, and `PyPy`_
- **Portable** - Completely supports OS X, Linux, and BSDs (and maybe Windows).
Expand Down
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Features
- **Powerful** - Multi-target + auto-discovery.
- **Traditional** - Use the normal `unittest` classes and methods for your unit tests.
- **Descriptive** - Four verbosity levels, from just dots to full docstring output.
- **Convenient** - Bash-completion and ZSH-completion of options and test targets.
- **Thorough** - Built-in, optional integration with
[coverage](http://nedbatchelder.com/code/coverage/).
- **Modern** - Supports Python 2.7, 3.3, 3.4, and [PyPy](http://pypy.org)
Expand Down Expand Up @@ -68,6 +69,17 @@ green test_stuff.py
green package.test.test_module.TestClass.test_function
```

Bash-Completion / ZSH-Completion
--------------------------------

To enable completion of options and test targets when you press `Tab` in your
terminal, add the following line to the Bash or ZSH config file of your choice
(usually `~/.bashrc` or `~/.zshrc`)

```bash
which green > /dev/null && source "$( green --completion-file )"
```

Basic Troubleshooting
---------------------

Expand Down
2 changes: 1 addition & 1 deletion green/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.1
1.3.0

0 comments on commit 2789ca9

Please sign in to comment.