From adccfe00b63ccb392e01c4e5d67892db464729ac Mon Sep 17 00:00:00 2001 From: Andy Mikhaylenko Date: Mon, 12 Oct 2015 22:04:45 +0200 Subject: [PATCH] Bump version, update authors --- .travis.yml | 1 + AUTHORS.rst | 1 + CHANGELOG.rst | 24 +++++++++++++++++------- autoslug/__init__.py | 2 +- 4 files changed, 20 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 64b35f4..c61e3c9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ python: - 3.5 - pypy # - pypy3 +sudo: false install: - pip install -r requirements/testing.txt - pip install coveralls diff --git a/AUTHORS.rst b/AUTHORS.rst index 48197a5..3880f0e 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -28,4 +28,5 @@ generally made django-autoslug better: * Thomas Schreiber * Mike Urbanski * Vadim Iskuchekov +* kane-c * Your Name Here ;) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index af8e5c9..590a5e2 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,21 +1,31 @@ Changelog ~~~~~~~~~ +Version 1.9.1 +------------- + +Bugs fixed: + +- #43 — Packaging error + Version 1.9.0 ------------- Backwards incompatible changes: -- limited supported versions of Python to 2.7, 3.5 and PyPy. -- limited supported Django versions to 1.7.10 and higher. -- turned off modeltranslation support by default (can be enabled) - -Converted the test suite from doctest to unittest. +- Limited supported versions of Python to 2.7, 3.5 and PyPy. +- Limited supported Django versions to 1.7.10 and higher. +- Turned off modeltranslation support by default (can be enabled) Bugs fixed: -- #25: max_length ignored in django 1.7 migrations -- #42: added setting to enable/disable modeltranslation support +- #25 — max_length ignored in django 1.7 migrations. +- #42 — Added setting to enable/disable modeltranslation support. + +Other changes: + +- Converted the test suite from doctest to unittest. +- The project has moved from Bitbucket to GitHub. Old versions ------------ diff --git a/autoslug/__init__.py b/autoslug/__init__.py index 67fe5c4..6328971 100644 --- a/autoslug/__init__.py +++ b/autoslug/__init__.py @@ -11,5 +11,5 @@ from autoslug.fields import AutoSlugField -__version__ = '1.9.0' +__version__ = '1.9.1' __all__ = ['AutoSlugField']