Release version 0.1.0

This commit is contained in:
Joel Martin 2012-05-11 12:12:50 -05:00
parent 63600bf422
commit e1c206b315
3 changed files with 10 additions and 3 deletions

View File

@ -1,8 +1,8 @@
Changes
=======
0.1 (not yet released)
0.1.0
-----------------
* No change yet.
* Initial versioned release.

7
docs/release.txt Normal file
View File

@ -0,0 +1,7 @@
- Update setup.py and CHANGES.txt and commit
- Create version tag and tarball from tag
WVER=0.1.0
git tag ${WVER}
git archive --format=tar --prefix=websockify-${WVER}/ v${WVER} > websockify-${WVER}.tar
gzip websockify-${WVER}.tar
- Upload tarball to repo

View File

@ -1,6 +1,6 @@
from setuptools import setup, find_packages
version = '0.1-dev'
version = '0.1.0'
name = 'websockify'
long_description = open("README.md").read() + "\n" + \
open("CHANGES.txt").read() + "\n"