Bump version to 0.2 and changelog added.

This commit is contained in:
Andrey Popp 2010-07-19 00:43:35 +04:00
parent 25dd639a8c
commit 8f90d9af20
2 changed files with 19 additions and 2 deletions

14
CHANGELOG.rst Normal file
View File

@ -0,0 +1,14 @@
Changes
=======
0.2
---
- Method with multidispatch by object type and positional arguments.
- Override multifunctions with ``override`` method.
0.1
---
- Registry with simple and type axes.
- Functions with multidispatch by positional arguments.

View File

@ -1,8 +1,11 @@
from setuptools import setup
from setuptools import find_packages
version = "0.1"
long_description = open("README.rst", "r").read()
version = "0.2"
long_description = \
open("README.rst", "r").read() + \
"\n\n" + \
open("CHANGELOG.rst", "r").read()
setup(name="generic",
version=version,