diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | README.rst | 8 | ||||
-rw-r--r-- | combox/_version.py | 2 |
3 files changed, 14 insertions, 1 deletions
@@ -1,5 +1,10 @@ 2015-12-22 Siddharth Ravikumar <sravik@bgsu.edu> + * combox/_version.py: bumped to version 0.2.0 + * README.rst: Added "Installation" section. + +2015-12-22 Siddharth Ravikumar <sravik@bgsu.edu> + * Makefile: Added 2015-12-22 Siddharth Ravikumar <sravik@bgsu.edu> @@ -17,6 +17,14 @@ etymology is pronounced as "combo box". +Installation +------------ + +Install ``combox`` with ``pip``:: + + $ pip install combox + + canonical repo -------------- diff --git a/combox/_version.py b/combox/_version.py index 6038bff..a5e4129 100644 --- a/combox/_version.py +++ b/combox/_version.py @@ -19,7 +19,7 @@ # <http://www.gnu.org/licenses/>. __version__ = u"0.2" -__release__ = u"0.rc3" +__release__ = u"0" def get_version(): |