Skip to content

Commit

Permalink
Merge pull request #81 from littleweaver/2.2.0
Browse files Browse the repository at this point in the history
2.2.0
  • Loading branch information
chigby committed Apr 13, 2016
2 parents 78ffb44 + 02db3e7 commit 468b6a7
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -32,7 +32,7 @@ Requirements
* Django 1.7 & 1.8
* Six 1.10.0+

Daguerre *may* work with earlier versions of these packages, but they are not officially supported.
Daguerre *may* work with earlier or later versions of these packages, but they are not officially supported.

Installation
------------
Expand Down
2 changes: 1 addition & 1 deletion daguerre/__init__.py
@@ -1 +1 @@
__version__ = (2, 2, '0-a')
__version__ = (2, 2, 0)
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -45,7 +45,7 @@

# General information about the project.
project = u'Django Daguerre'
copyright = u'2010-2014, Little Weaver Web Collective, LLC'
copyright = u'2010-2016, Little Weaver Web Collective, LLC'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand All @@ -54,7 +54,7 @@
# The short X.Y version.
version = '2.2'
# The full version, including alpha/beta/rc tags.
release = '2.2.0-a'
release = '2.2.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
9 changes: 9 additions & 0 deletions docs/index.rst
Expand Up @@ -57,6 +57,15 @@ API Docs
api/models


Release Notes
-------------

.. toctree::
:maxdepth: 2

release-notes/index


Indices and tables
------------------

Expand Down
7 changes: 7 additions & 0 deletions docs/release-notes/2.2.0.rst
@@ -0,0 +1,7 @@
2.2.0 (2016-04-13)
------------------

* Improved efficiency of adjusted image queries (thanks `@mislavcimpersak <https://github.com/mislavcimpersak>`_!)
* Fixed some minor image adjustment bugs.
* Added Jinja template support.
* Added compatibility with Django 1.8
7 changes: 7 additions & 0 deletions docs/release-notes/index.rst
@@ -0,0 +1,7 @@
Release Notes
-------------

.. toctree::
:maxdepth: 2

2.2.0
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -18,9 +18,9 @@
include_package_data=True,
zip_safe=False,
install_requires=[
'Pillow>=2.3.0',
'django>=1.7',
'six>=1.3.0',
'Pillow<=2.7.0',
'django>=1.7,<1.9',
'six>=1.10.0',
],
extras_require={
'docs': ["sphinx-rtd-theme>=0.1.5"],
Expand Down

0 comments on commit 468b6a7

Please sign in to comment.