Skip to content

Commit d3e6067

Browse files
committed
version bumb and changelog
1 parent 3746eae commit d3e6067

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,16 @@ To run the test suite, execute the following in your shell (Django install is re
2626

2727
## Change Log
2828

29-
### Dev
29+
### 1.3.0
3030

3131
* Removed `CreateAndRedirectToEditView` mixin. It was marked for deprecation and removal since 1.0.
3232
* Added `JsonRequestAndResponseMixin` mixin which attempts to parse requests as JSON.
3333
* Added `CanonicalSlugDetailMixin` mixin which allows for the specification of a canonical slug on a `DetailView` to help with SEO by redirecting on non-canonical requests.
34+
* Added `UserPassesTestMixin` mixin to replicate the behavior of Django's `@user_passes_test` decorator.
35+
* Some fixes for `CanonicalSlugDetailMixin`.
36+
* `AccessMixin` now has a runtime-overridable `login_url` attribute.
37+
* Fixed problem with `GroupRequiredMixin` that made it not actually work.
38+
* All tests pass for Django versions 1.4 through 1.6 and Python versions 2.6, 2.7, and 3.3 (Django 1.4 and 1.5 not tested with Python 3.3).
3439
* Tests and documentation changes for all of the above.
3540

3641
### 1.2.1

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '1.2.2'
51+
version = '1.3.0'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '1.2.2'
53+
release = '1.3.0'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="django-braces",
5-
version="1.2.2",
5+
version="1.3.0",
66
description="Reusable, generic mixins for Django",
77
long_description="Mixins to add easy functionality to Django class-based views, forms, and models.",
88
keywords="django, views, forms, mixins",

0 commit comments

Comments
 (0)