From db2f23720fbf7d6ac0edafacd371c194dad9e8c6 Mon Sep 17 00:00:00 2001 From: Warren Smith Date: Sat, 20 Jun 2015 22:41:27 -0600 Subject: [PATCH] Release v1.2.0. --- docs/conf.py | 6 +++--- release_notes.rst | 10 ++++++++++ setup.py | 2 +- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 5d47fe8..38c9ff1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -41,16 +41,16 @@ # General information about the project. project = u'namedspace' -copyright = u'2013, Warren A. Smith' +copyright = u'2015, Warren A. Smith' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = '1.0' +version = '1.2.0' # The full version, including alpha/beta/rc tags. -release = '1.0.1' +release = '1.2.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/release_notes.rst b/release_notes.rst index 7069f54..082e0cd 100644 --- a/release_notes.rst +++ b/release_notes.rst @@ -1,6 +1,16 @@ namedspace release notes ======================== +1.2.0 +===== +* Make _field_names and _field_names_iter properties available + directly on the namedspace class. +* Added subclass example documentation. +* Added documentation for return_none parameter. +* Fix __repr__ method so that it properly displays subclass name. +* Fixed documentation to include return_none parameter. +* Added documentation link in README file. + 1.1.1 ===== * Added LICENSE file. diff --git a/setup.py b/setup.py index 71c6e42..4b81e03 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages -__version__ = "1.1.1" +__version__ = "1.2.0" def file_read(filename): filepath = os.path.join(os.path.dirname(__file__), filename)