From 929e573b4bcb60976a1a163be4079b490159e5b1 Mon Sep 17 00:00:00 2001 From: Tibor Simko Date: Fri, 3 Jul 2015 11:08:13 +0200 Subject: [PATCH] DoJSON v0.1.0 Signed-off-by: Tibor Simko Reviewed-by: Jiri Kuncar --- CHANGES.rst | 2 +- MANIFEST.in | 1 + README.rst | 2 +- RELEASE-NOTES.rst | 34 ++++++++++++++++++++++++++++++++++ docs/index.rst | 2 +- dojson/version.py | 2 +- setup.py | 2 +- 7 files changed, 40 insertions(+), 5 deletions(-) create mode 100644 RELEASE-NOTES.rst diff --git a/CHANGES.rst b/CHANGES.rst index 740fee1..608e5d2 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,6 @@ Changes ======= -Version 0.1.0 (released FIXME): +Version 0.1.0 (released 2015-07-03): - Initial public release. diff --git a/MANIFEST.in b/MANIFEST.in index c7c37c2..42f9a7f 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -19,4 +19,5 @@ recursive-include docs *.py recursive-include docs *.rst recursive-include docs Makefile recursive-include dojson *.py +recursive-include dojson *.json recursive-include tests *.py diff --git a/README.rst b/README.rst index ca69241..2ba3990 100644 --- a/README.rst +++ b/README.rst @@ -16,7 +16,7 @@ About ===== -A Pythonic JSON to JSON converter. +DoJSON is a simple Pythonic JSON to JSON converter. Installation ============ diff --git a/RELEASE-NOTES.rst b/RELEASE-NOTES.rst new file mode 100644 index 0000000..b9c4abd --- /dev/null +++ b/RELEASE-NOTES.rst @@ -0,0 +1,34 @@ +=========================== + DoJSON v0.1.0 is released +=========================== + +DoJSON v0.1.0 was released on July 3, 2015. + +About +----- + +DoJSON is a simple Pythonic JSON to JSON converter. + +What's new +---------- + +- Initial public release. + +Installation +------------ + + $ pip install dojson + +Documentation +------------- + + http://dojson.readthedocs.org/en/v0.1.0 + +Happy hacking and thanks for flying DoJSON. + +| Invenio Development Team +| Email: info@invenio-software.org +| IRC: #invenio on irc.freenode.net +| Twitter: http://twitter.com/inveniosoftware +| GitHub: https://github.com/inveniosoftware/dojson +| URL: http://invenio-software.org diff --git a/docs/index.rst b/docs/index.rst index 04f6159..98b927c 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -24,7 +24,7 @@

-DoJSON is a Pythonic library that converts JSON to JSON. +DoJSON is a simple Pythonic JSON to JSON converter. Installation ============ diff --git a/dojson/version.py b/dojson/version.py index 3bc97ab..f8824a6 100644 --- a/dojson/version.py +++ b/dojson/version.py @@ -17,4 +17,4 @@ # Do not change the format of this next line. Doing so risks breaking # setup.py and docs/conf.py -__version__ = "0.1.0.dev20150610" +__version__ = "0.1.0" diff --git a/setup.py b/setup.py index dee2b5f..94dc633 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ # modify it under the terms of the Revised BSD License; see LICENSE # file for more details. -"""A Pythonic JSON to JSON converter.""" +"""DoJSON is a simple Pythonic JSON to JSON converter.""" import os import re