Bump version to 0.2 and changelog added.
This commit is contained in:
parent
25dd639a8c
commit
8f90d9af20
14
CHANGELOG.rst
Normal file
14
CHANGELOG.rst
Normal 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.
|
7
setup.py
7
setup.py
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user