From 5c4745d80c294aed121bf532429cbcd08bf5031f Mon Sep 17 00:00:00 2001 From: Chris Beaven Date: Thu, 15 Jan 2015 14:59:59 +1300 Subject: [PATCH] Add CHANGES.rst to the package manifest, release as 3.1.1 --- CHANGES.rst | 5 +++++ MANIFEST.in | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 3f70933d..9f41e069 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -18,6 +18,11 @@ Version 3.1 (15 Jan 2015) * Add a ``blank_label`` argument to ``CountryField`` to allow customization of the label shown in the initial blank choice shown in the select widget. +Version 3.1.1 (15 Jan 2015) +--------------------------- + +* Packaging fix (``CHANGES.rst`` wasn't in the manifest) + Version 3.0 (22 Oct 2014) ========================= diff --git a/MANIFEST.in b/MANIFEST.in index 5ffce1e2..8289484c 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,4 @@ -include README.rst +include *.rst include LICENSE include tox.ini graft django_countries/static/flags diff --git a/setup.py b/setup.py index 06b474b8..27d644c8 100755 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ def read_files(*filenames): setup( name='django-countries', - version='3.1', + version='3.1.1', description='Provides a country field for Django models.', long_description=read_files('README.rst', 'CHANGES.rst'), author='Chris Beaven',