update changelog
This commit is contained in:
parent
c4b042c9be
commit
b2fdbbc60d
18
CHANGES.rst
Normal file
18
CHANGES.rst
Normal file
|
@ -0,0 +1,18 @@
|
|||
|
||||
0.3a3
|
||||
-----
|
||||
|
||||
- [general] Fixed namespace package declaration.
|
||||
|
||||
- [general] Added initial Fabric script.
|
||||
|
||||
|
||||
0.3a2
|
||||
-----
|
||||
|
||||
- Tweaked default label format.
|
||||
|
||||
0.3a1
|
||||
-----
|
||||
|
||||
- Initial port to Rattail v0.3.
|
10
CHANGES.txt
10
CHANGES.txt
|
@ -1,10 +0,0 @@
|
|||
|
||||
0.3a2
|
||||
-----
|
||||
|
||||
- Tweaked default label format.
|
||||
|
||||
0.3a1
|
||||
-----
|
||||
|
||||
- Initial port to Rattail v0.3.
|
|
@ -1 +1,2 @@
|
|||
include *.txt
|
||||
include *.rst
|
||||
|
|
|
@ -1 +1 @@
|
|||
__version__ = '0.3a2'
|
||||
__version__ = '0.3a3'
|
||||
|
|
2
setup.py
2
setup.py
|
@ -30,7 +30,7 @@ from setuptools import setup, find_packages
|
|||
here = os.path.abspath(os.path.dirname(__file__))
|
||||
execfile(os.path.join(here, 'rattail', 'hw', 'cognitive', '_version.py'))
|
||||
README = open(os.path.join(here, 'README.txt')).read()
|
||||
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
|
||||
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
|
||||
|
||||
|
||||
requires = [
|
||||
|
|
Loading…
Reference in a new issue