Skip to content

Commit f1c6e77

Browse files
committed
Release 0.2.2
1 parent 5996db0 commit f1c6e77

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-4
lines changed

HISTORY.rst

+18-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,21 @@
33
History
44
-------
55

6-
TODO
6+
0.1
7+
+++++
8+
9+
* Original version by mhoye
10+
11+
0.2.0 (2013-11-08)
12+
++++++++++++++++++
13+
14+
* Rewrite
15+
* New dependency: `git2json`
16+
* First version released on PyPI
17+
18+
0.2.2 (2013-11-09)
19+
++++++++++++++++++
20+
21+
* Python 3 compatibility
22+
* Packaging fixes
23+

gitcoach/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
__author__ = 'Mike Hoye'
55
__email__ = 'mhoye@mozilla.com'
6-
__version__ = '0.2.1'
6+
__version__ = '0.2.2'

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,10 @@
1616

1717
readme = open('README.rst').read()
1818
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
19-
from gitcoach import __version__ as VERSION
2019

2120
setup(
2221
name='gitcoach',
23-
version=VERSION,
22+
version='0.2.2',
2423
description='Help you find out what files you should be changing.',
2524
long_description=readme + '\n\n' + history,
2625
author='Mike Hoye',

0 commit comments

Comments
 (0)