Skip to content

Commit

Permalink
Released 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Bouke committed Jun 15, 2014
1 parent 71368fe commit 105ec5c
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[bumpversion]
current_version = 1.0.0
files = setup.py docs/conf.py

8 changes: 5 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,12 @@
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '1.0'

# The full version, including alpha/beta/rc tags.
release = '1.0.0-beta1'
release = '1.0.0'

# The short X.Y version.
version = '.'.join(release.split('.')[0:2])

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 4 additions & 0 deletions docs/release-notes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Release Notes
=============

1.0.0
-----
*No changes from 1.0.0-beta1.*

1.0.0-beta1
-----------
* #8 -- Consistent URL patterns
Expand Down
1 change: 1 addition & 0 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ sphinx_rtd_theme
# Build

wheel
bumpversion
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='django-user-sessions',
version='1.0.0-beta1',
version='1.0.0',
description='Django sessions with a foreign key to the user',
long_description=open('README.rst').read(),
author='Bouke Haarsma',
Expand All @@ -14,7 +14,7 @@
install_requires=['Django>=1.4'],
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
Expand Down

0 comments on commit 105ec5c

Please sign in to comment.