bump version

This commit is contained in:
ndparker 2015-10-18 21:47:58 +02:00
parent a97fadfe85
commit b8c17c6720
5 changed files with 17 additions and 17 deletions

View File

@ -1,4 +1,4 @@
Changes with version Changes with version 1.0.12
*) Benchmark updates, dropped slimit benchmarks, because of installation *) Benchmark updates, dropped slimit benchmarks, because of installation
trouble trouble

View File

@ -44,7 +44,7 @@ copyright = u'2015 Andr\xe9 Malo'
# The short X.Y version. # The short X.Y version.
version = '1.0' version = '1.0'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '1.0.11' release = '1.0.12'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View File

@ -4,7 +4,7 @@ Download
Change Log Change Log
---------- ----------
`CHANGES file <http://storage.perlig.de/rjsmin/CHANGES-1.0.11>`_ `CHANGES file <http://storage.perlig.de/rjsmin/CHANGES-1.0.12>`_
Source Packages Source Packages
@ -15,11 +15,11 @@ Source Packages
Current Stable Version Current Stable Version
'''''''''''''''''''''' ''''''''''''''''''''''
- `rjsmin-1.0.11.tar.xz <http://storage.perlig.de/rjsmin/rjsmin-1.0.11.tar.xz>`_ - `rjsmin-1.0.12.tar.xz <http://storage.perlig.de/rjsmin/rjsmin-1.0.12.tar.xz>`_
- `rjsmin-1.0.11.tar.bz2 <http://storage.perlig.de/rjsmin/rjsmin-1.0.11.tar.bz2>`_ - `rjsmin-1.0.12.tar.bz2 <http://storage.perlig.de/rjsmin/rjsmin-1.0.12.tar.bz2>`_
- `rjsmin-1.0.11.tar.gz <http://storage.perlig.de/rjsmin/rjsmin-1.0.11.tar.gz>`_ - `rjsmin-1.0.12.tar.gz <http://storage.perlig.de/rjsmin/rjsmin-1.0.12.tar.gz>`_
- `rjsmin-1.0.11.zip <http://storage.perlig.de/rjsmin/rjsmin-1.0.11.zip>`_ - `rjsmin-1.0.12.zip <http://storage.perlig.de/rjsmin/rjsmin-1.0.12.zip>`_
- `rjsmin-1.0.11.digests <http://storage.perlig.de/rjsmin/rjsmin-1.0.11.digests>`_ - `rjsmin-1.0.12.digests <http://storage.perlig.de/rjsmin/rjsmin-1.0.12.digests>`_
.. end stable .. end stable
@ -29,17 +29,17 @@ Integrity Check
There are hashes (MD5, SHA1 and SHA256) of the download packages stored There are hashes (MD5, SHA1 and SHA256) of the download packages stored
in the `digests file in the `digests file
<http://storage.perlig.de/rjsmin/rjsmin-1.0.11.digests>`_\. <http://storage.perlig.de/rjsmin/rjsmin-1.0.12.digests>`_\.
In order to check the integrity of the downloaded file, use a tool like In order to check the integrity of the downloaded file, use a tool like
md5sum (or sha1sum, sha256sum accordingly), e.g.: md5sum (or sha1sum, sha256sum accordingly), e.g.:
.. sourcecode:: console .. sourcecode:: console
$ md5sum -c rjsmin-1.0.11.digests $ md5sum -c rjsmin-1.0.12.digests
rjsmin-1.0.11.tar.bz2: OK rjsmin-1.0.12.tar.bz2: OK
rjsmin-1.0.11.tar.gz: OK rjsmin-1.0.12.tar.gz: OK
rjsmin-1.0.11.tar.xz: OK rjsmin-1.0.12.tar.xz: OK
rjsmin-1.0.11.zip: OK rjsmin-1.0.12.zip: OK
In order to check the integrity of the digest file itself, you can check 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 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 .. sourcecode:: console
$ gpg --verify rjsmin-1.0.11.digests $ gpg --verify rjsmin-1.0.12.digests
gpg: Signature made Sun Oct 11 15:38:49 2015 CEST using DSA key ID 8103A37E gpg: Signature made Sun Oct 11 15:38:49 2015 CEST using DSA key ID 8103A37E
gpg: Good signature from "Andre Malo <nd@apache.org>" gpg: Good signature from "Andre Malo <nd@apache.org>"
gpg: aka "Andr\xe9\x20Malo <nd@perlig.de>" gpg: aka "Andr\xe9\x20Malo <nd@perlig.de>"

View File

@ -23,7 +23,7 @@ pypy.min = 1.9
pypy3.min = 2.4 pypy3.min = 2.4
jython.min = 2.5 jython.min = 2.5
version.number = 1.0.11 version.number = 1.0.12
author.name = André Malo author.name = André Malo
author.email = nd@perlig.de author.email = nd@perlig.de

View File

@ -67,7 +67,7 @@ if __doc__:
__author__ = r"Andr\xe9 Malo".encode('ascii').decode('unicode_escape') __author__ = r"Andr\xe9 Malo".encode('ascii').decode('unicode_escape')
__docformat__ = "restructuredtext en" __docformat__ = "restructuredtext en"
__license__ = "Apache License, Version 2.0" __license__ = "Apache License, Version 2.0"
__version__ = '1.0.11' __version__ = '1.0.12'
__all__ = ['jsmin'] __all__ = ['jsmin']
import re as _re import re as _re