Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
maxtepkeev committed Mar 12, 2014
1 parent ed61918 commit 00bf15a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
---------

0.7.0 (2014-03-XX)
0.7.0 (2014-03-12)
++++++++++++++++++

- Added: WikiPage resource now automatically requests all of it's available attributes from
Expand Down
1 change: 1 addition & 0 deletions redmine/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import json
import requests
from distutils.version import LooseVersion
from redmine.version import __version__
from redmine.managers import ResourceManager
from redmine.utilities import to_string
from redmine.exceptions import (
Expand Down
1 change: 1 addition & 0 deletions redmine/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = '0.7.0'
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
from setuptools import setup

exec(open('redmine/version.py').read())

setup(
name='python-redmine',
version='0.6.2',
version=__version__,
packages=['redmine'],
url='https://github.com/maxtepkeev/python-redmine',
license=open('LICENSE').read(),
Expand Down

0 comments on commit 00bf15a

Please sign in to comment.