Skip to content

Commit

Permalink
Bump version to 1.0.0 now that we removed Django 1.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
rory-geoghegan-ecometrica committed Feb 3, 2016
1 parent 350eaff commit 395d676
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2010, Ecometrica Canada Limited. All rights reserved.
Copyright (c) 2016, Ecometrica Canada Limited. All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
Expand All @@ -23,4 +23,4 @@ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
POSSIBILITY OF SUCH DAMAGE.
7 changes: 7 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -99,3 +99,10 @@ Release Notes
-----

* Can specify properties to use instead of database field names in .register() function.

1.0.0
-----

* Remove support for Django versions < 1.8
* Added support for Django 1.9
* Add the `--keep-vinaigrette-temp` option which keeps the temporary file containing the generated list of translations
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@

setup(
name = "django-vinaigrette",
version = "0.5.0",
version = "1.0.0",
packages = find_packages(),
description = description,
author = "Ecometrica",
author_email = "info@ecometrica.ca",
author_email = "dev@ecometrica.com",
maintainer = "Rory Geoghegan",
maintainer_email = "[email protected]",
url = "http://github.com/ecometrica/django-vinaigrette/",
Expand Down
2 changes: 1 addition & 1 deletion vinaigrette/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from django.core.urlresolvers import reverse
from django.utils.translation import ugettext, ugettext_lazy, activate, get_language

VERSION = "0.5.0"
VERSION = (1, 0, 0)

class VinaigretteError(Exception):
pass
Expand Down

0 comments on commit 395d676

Please sign in to comment.