Skip to content

Commit

Permalink
Released 1.0.0-beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
Bouke committed Jun 1, 2014
1 parent 95e44aa commit 71368fe
Show file tree
Hide file tree
Showing 9 changed files with 45 additions and 17 deletions.
16 changes: 16 additions & 0 deletions CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Repository owner:

* Bouke Haarsma

Contributors:

* roelwivion
* Tomasz Zieliński

Translators:

* Bashar Al-Abdulhadi
* elnappo
* joke2k
* Kunda
* mozillazg
File renamed without changes.
3 changes: 1 addition & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
include LICENSE.txt
include README.rst
include *.rst LICENSE
prune user_sessions/locale
recursive-include user_sessions/locale *
recursive-include user_sessions/templates *
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ coverage:
coverage report

tx-pull:
tx pull -a --minimum-perc=90
tx pull -a
cd user_sessions; django-admin.py compilemessages

tx-push:
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@
# built documents.
#
# The short X.Y version.
version = '0.1'
version = '1.0'
# The full version, including alpha/beta/rc tags.
release = '0.1.4'
release = '1.0.0-beta1'

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

1.0.0-beta1
-----------
* #8 -- Consistent URL patterns
* #11 -- Support Django 1.6's ATOMIC_REQUESTS
* German translation added

0.1.4
-----
* Python 3.4 support
* Django 1.7 (beta) support
* Italian translation added (thanks to joke2k)
* Chinese translation added (thanks to mozillazg)
* Arabic translation updated (thanks to Bashar Al-Abdulhadi)
* Italian translation added
* Chinese translation added
* Arabic translation updated

0.1.3
-----
* Documentation
* Hebrew translation added (thanks to Kunda)
* Arabic translation added (thanks to Bashar Al-Abdulhadi)
* Fixed #3 -- Reset user_id on logout (reported by Tomasz Zieliński)
* Fixed #4 -- Add explicit license text (reported by Tomasz Zieliński)
* Hebrew translation added
* Arabic translation added
* Fixed #3 -- Reset user_id on logout
* Fixed #4 -- Add explicit license text

0.1.2
-----
Expand Down
8 changes: 6 additions & 2 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,15 @@ coverage
flake8
tox

# Transifex

transifex-client

# Documentation

Sphinx
sphinx_rtd_theme

# Transifex
# Build

transifex-client
wheel
5 changes: 4 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[flake8]
exclude=user_sessions/migrations
exclude = user_sessions/migrations
max-line-length = 100

[wheel]
universal = 1
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='0.1.4',
version='1.0.0-beta1',
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 :: 5 - Production/Stable',
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
Expand Down

0 comments on commit 71368fe

Please sign in to comment.