bump version

This commit is contained in:
ndparker 2015-10-11 17:49:52 +02:00
parent 16070d3556
commit 4764e3bc47
5 changed files with 16 additions and 16 deletions

View File

@ -1,4 +1,4 @@
Changes with version
Changes with version 1.0.6
*) Fix minification of calc() calls. (Issue #1)

View File

@ -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.5'
release = '1.0.6'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -9,11 +9,11 @@ Source Packages
Current Stable Version
''''''''''''''''''''''
- `rcssmin-1.0.5.tar.xz <http://storage.perlig.de/rcssmin/rcssmin-1.0.5.tar.xz>`_
- `rcssmin-1.0.5.tar.bz2 <http://storage.perlig.de/rcssmin/rcssmin-1.0.5.tar.bz2>`_
- `rcssmin-1.0.5.tar.gz <http://storage.perlig.de/rcssmin/rcssmin-1.0.5.tar.gz>`_
- `rcssmin-1.0.5.zip <http://storage.perlig.de/rcssmin/rcssmin-1.0.5.zip>`_
- `rcssmin-1.0.5.digests <http://storage.perlig.de/rcssmin/rcssmin-1.0.5.digests>`_
- `rcssmin-1.0.6.tar.xz <http://storage.perlig.de/rcssmin/rcssmin-1.0.6.tar.xz>`_
- `rcssmin-1.0.6.tar.bz2 <http://storage.perlig.de/rcssmin/rcssmin-1.0.6.tar.bz2>`_
- `rcssmin-1.0.6.tar.gz <http://storage.perlig.de/rcssmin/rcssmin-1.0.6.tar.gz>`_
- `rcssmin-1.0.6.zip <http://storage.perlig.de/rcssmin/rcssmin-1.0.6.zip>`_
- `rcssmin-1.0.6.digests <http://storage.perlig.de/rcssmin/rcssmin-1.0.6.digests>`_
.. end stable
@ -23,17 +23,17 @@ Integrity Check
There are hashes (MD5, SHA1 and SHA256) of the download packages stored
in the `digests file
<http://storage.perlig.de/rcssmin/rcssmin-1.0.5.digests>`_\.
<http://storage.perlig.de/rcssmin/rcssmin-1.0.6.digests>`_\.
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 rcssmin-1.0.5.digests
rcssmin-1.0.5.tar.bz2: OK
rcssmin-1.0.5.tar.gz: OK
rcssmin-1.0.5.tar.xz: OK
rcssmin-1.0.5.zip: OK
$ md5sum -c rcssmin-1.0.6.digests
rcssmin-1.0.6.tar.bz2: OK
rcssmin-1.0.6.tar.gz: OK
rcssmin-1.0.6.tar.xz: OK
rcssmin-1.0.6.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
@ -41,7 +41,7 @@ the PGP signature of that file. The file is signed by André Malo, Key-ID
.. sourcecode:: console
$ gpg --verify rcssmin-1.0.5.digests
$ gpg --verify rcssmin-1.0.6.digests
gpg: Signature made Sat Nov 8 21:34:35 2014 CET using DSA key ID 8103A37E
gpg: Good signature from "Andre Malo <nd@apache.org>"
gpg: aka "Andr\xe9\x20Malo <nd@perlig.de>"

View File

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

View File

@ -78,7 +78,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.5'
__version__ = '1.0.6'
__all__ = ['cssmin']
import re as _re