Skip to content

Commit 097f1b4

Browse files
committed
Release 0.6.0
1 parent c3cd175 commit 097f1b4

File tree

6 files changed

+29
-3
lines changed

6 files changed

+29
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
django_pylibmc.egg-info
44
pylibmc
55
dist/*
6+
build/*

CHANGELOG.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Changelog
2+
=========
3+
4+
0.6.0 - 2015-04-01
5+
------------------
6+
- Requires pylibmc 1.4.1 or greater
7+
- Supports Django 1.4 through 1.8.
8+
- Supports Python 2.5 through 2.7, and Python 3.3 through 3.4
9+
- In Django 1.6 and higher, when the timeout is omitted, the default
10+
timeout is used, rather than set to "never expire".

MANIFEST.in

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
include LICENSE
2-
include README.rst
2+
include *.rst
3+
include tox.ini
4+
recursive-include tests *.py

django_pylibmc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
VERSION = (0, 5, 0)
1+
VERSION = (0, 6, 0)
22
__version__ = '.'.join(map(str, VERSION))

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[bdist_wheel]
2+
universal = 1

setup.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,14 @@ def run_tests(self):
1818
sys.exit(errno)
1919

2020

21+
long_description = "\n".join(
22+
[open(f).read() for f in ['README.rst', 'CHANGELOG.rst']])
23+
2124
setup(
2225
name='django-pylibmc',
2326
version=django_pylibmc.__version__,
2427
description='Django cache backend using pylibmc',
25-
long_description=open('README.rst').read(),
28+
long_description=long_description,
2629
author='Jeff Balogh',
2730
author_email='jbalogh@mozilla.com',
2831
url='https://github.com/django-pylibmc/django-pylibmc',
@@ -33,6 +36,7 @@ def run_tests(self):
3336
install_requires=['pylibmc>=1.4.1', 'Django>=1.4'],
3437
tests_require=['tox'],
3538
cmdclass = {'test': Tox},
39+
keywords = 'django cache pylibmc memcached',
3640
classifiers=[
3741
'Development Status :: 4 - Beta',
3842
'Environment :: Web Environment',
@@ -43,6 +47,13 @@ def run_tests(self):
4347
'License :: OSI Approved :: BSD License',
4448
'Operating System :: OS Independent',
4549
'Programming Language :: Python',
50+
'Programming Language :: Python :: 2',
51+
'Programming Language :: Python :: 2.5',
52+
'Programming Language :: Python :: 2.6',
53+
'Programming Language :: Python :: 2.7',
54+
'Programming Language :: Python :: 3',
55+
'Programming Language :: Python :: 3.3',
56+
'Programming Language :: Python :: 3.4',
4657
'Topic :: Software Development :: Libraries :: Python Modules',
4758
]
4859
)

0 commit comments

Comments
 (0)