From 7b9e720034a9667781b740cd2971c4de221a52d5 Mon Sep 17 00:00:00 2001 From: ndparker Date: Sun, 11 Oct 2015 14:43:21 +0200 Subject: [PATCH] bump version --- docs/CHANGES | 2 +- docs/_userdoc/conf.py | 2 +- docs/_userdoc/website_download.txt | 26 +++++++++++++------------- package.cfg | 2 +- rjsmin.py | 2 +- 5 files changed, 17 insertions(+), 17 deletions(-) diff --git a/docs/CHANGES b/docs/CHANGES index e5975ac..66f40d3 100644 --- a/docs/CHANGES +++ b/docs/CHANGES @@ -1,4 +1,4 @@ -Changes with version +Changes with version 1.0.11 *) Benchmark updates diff --git a/docs/_userdoc/conf.py b/docs/_userdoc/conf.py index 4f60180..96dc349 100644 --- a/docs/_userdoc/conf.py +++ b/docs/_userdoc/conf.py @@ -44,7 +44,7 @@ copyright = u'2014 Andr\xe9 Malo' # The short X.Y version. version = '1.0' # The full version, including alpha/beta/rc tags. -release = '1.0.10' +release = '1.0.11' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/_userdoc/website_download.txt b/docs/_userdoc/website_download.txt index 836a55a..0165112 100644 --- a/docs/_userdoc/website_download.txt +++ b/docs/_userdoc/website_download.txt @@ -4,7 +4,7 @@ Download Change Log ---------- -`CHANGES file `_ +`CHANGES file `_ Source Packages @@ -15,11 +15,11 @@ Source Packages Current Stable Version '''''''''''''''''''''' -- `rjsmin-1.0.10.tar.xz `_ -- `rjsmin-1.0.10.tar.bz2 `_ -- `rjsmin-1.0.10.tar.gz `_ -- `rjsmin-1.0.10.zip `_ -- `rjsmin-1.0.10.digests `_ +- `rjsmin-1.0.11.tar.xz `_ +- `rjsmin-1.0.11.tar.bz2 `_ +- `rjsmin-1.0.11.tar.gz `_ +- `rjsmin-1.0.11.zip `_ +- `rjsmin-1.0.11.digests `_ .. end stable @@ -29,17 +29,17 @@ Integrity Check There are hashes (MD5, SHA1 and SHA256) of the download packages stored in the `digests file -`_\. +`_\. In order to check the integrity of the downloaded file, use a tool like md5sum (or sha1sum, sha256sum accordingly), e.g.: .. sourcecode:: console - $ md5sum -c rjsmin-1.0.10.digests - rjsmin-1.0.10.tar.bz2: OK - rjsmin-1.0.10.tar.gz: OK - rjsmin-1.0.10.tar.xz: OK - rjsmin-1.0.10.zip: OK + $ md5sum -c rjsmin-1.0.11.digests + rjsmin-1.0.11.tar.bz2: OK + rjsmin-1.0.11.tar.gz: OK + rjsmin-1.0.11.tar.xz: OK + rjsmin-1.0.11.zip: OK In order to check the integrity of the digest file itself, you can check the PGP signature of that file. The file is signed by André Malo, Key-ID @@ -47,7 +47,7 @@ the PGP signature of that file. The file is signed by André Malo, Key-ID .. sourcecode:: console - $ gpg --verify rjsmin-1.0.10.digests + $ gpg --verify rjsmin-1.0.11.digests gpg: Signature made Fri Nov 7 22:03:51 2014 CET using DSA key ID 8103A37E gpg: Good signature from "Andre Malo " gpg: aka "Andr\xe9\x20Malo " diff --git a/package.cfg b/package.cfg index ef53e70..28ce0f7 100644 --- a/package.cfg +++ b/package.cfg @@ -23,7 +23,7 @@ pypy.min = 1.9 pypy3.min = 2.4 jython.min = 2.5 -version.number = 1.0.10 +version.number = 1.0.11 author.name = André Malo author.email = nd@perlig.de diff --git a/rjsmin.py b/rjsmin.py index e785479..1d4ff80 100755 --- a/rjsmin.py +++ b/rjsmin.py @@ -66,7 +66,7 @@ if __doc__: __author__ = r"Andr\xe9 Malo".encode('ascii').decode('unicode_escape') __docformat__ = "restructuredtext en" __license__ = "Apache License, Version 2.0" -__version__ = '1.0.10' +__version__ = '1.0.11' __all__ = ['jsmin'] import re as _re