bump version

This commit is contained in:
ndparker 2014-02-13 00:31:59 +01:00
parent 45a57e85e5
commit c69f2b0b9c
5 changed files with 16 additions and 16 deletions

View File

@ -1,4 +1,4 @@
Changes with version Changes with version 1.0.3
*) Added support for the following grouping @-rules: *) Added support for the following grouping @-rules:
@supports, @document, @keyframes @supports, @document, @keyframes

View File

@ -44,7 +44,7 @@ copyright = u'2014 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.2' release = '1.0.3'
# 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

@ -9,11 +9,11 @@ Source Packages
Current Stable Version Current Stable Version
'''''''''''''''''''''' ''''''''''''''''''''''
- `rcssmin-1.0.2.tar.xz <http://storage.perlig.de/rcssmin/rcssmin-1.0.2.tar.xz>`_ - `rcssmin-1.0.3.tar.xz <http://storage.perlig.de/rcssmin/rcssmin-1.0.3.tar.xz>`_
- `rcssmin-1.0.2.tar.bz2 <http://storage.perlig.de/rcssmin/rcssmin-1.0.2.tar.bz2>`_ - `rcssmin-1.0.3.tar.bz2 <http://storage.perlig.de/rcssmin/rcssmin-1.0.3.tar.bz2>`_
- `rcssmin-1.0.2.tar.gz <http://storage.perlig.de/rcssmin/rcssmin-1.0.2.tar.gz>`_ - `rcssmin-1.0.3.tar.gz <http://storage.perlig.de/rcssmin/rcssmin-1.0.3.tar.gz>`_
- `rcssmin-1.0.2.zip <http://storage.perlig.de/rcssmin/rcssmin-1.0.2.zip>`_ - `rcssmin-1.0.3.zip <http://storage.perlig.de/rcssmin/rcssmin-1.0.3.zip>`_
- `rcssmin-1.0.2.digests <http://storage.perlig.de/rcssmin/rcssmin-1.0.2.digests>`_ - `rcssmin-1.0.3.digests <http://storage.perlig.de/rcssmin/rcssmin-1.0.3.digests>`_
.. end stable .. end stable
@ -23,17 +23,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/rcssmin/rcssmin-1.0.2.digests>`_\. <http://storage.perlig.de/rcssmin/rcssmin-1.0.3.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 rcssmin-1.0.2.digests $ md5sum -c rcssmin-1.0.3.digests
rcssmin-1.0.2.tar.bz2: OK rcssmin-1.0.3.tar.bz2: OK
rcssmin-1.0.2.tar.gz: OK rcssmin-1.0.3.tar.gz: OK
rcssmin-1.0.2.tar.xz: OK rcssmin-1.0.3.tar.xz: OK
rcssmin-1.0.2.zip: OK rcssmin-1.0.3.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
@ -41,7 +41,7 @@ the PGP signature of that file. The file is signed by André Malo, Key-ID
.. sourcecode:: console .. sourcecode:: console
$ gpg --verify rcssmin-1.0.2.digests $ gpg --verify rcssmin-1.0.3.digests
gpg: Signature made Sun Feb 10 22:26:25 2013 CET using DSA key ID 8103A37E gpg: Signature made Sun Feb 10 22:26:25 2013 CET 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

@ -25,7 +25,7 @@ pypy.max = 2.0
jython.min = 2.5 jython.min = 2.5
jython.max = 2.7 jython.max = 2.7
version.number = 1.0.2 version.number = 1.0.3
author.name = André Malo author.name = André Malo
author.email = nd@perlig.de author.email = nd@perlig.de

View File

@ -78,7 +78,7 @@ __author__ = "Andr\xe9 Malo"
__author__ = getattr(__author__, 'decode', lambda x: __author__)('latin-1') __author__ = getattr(__author__, 'decode', lambda x: __author__)('latin-1')
__docformat__ = "restructuredtext en" __docformat__ = "restructuredtext en"
__license__ = "Apache License, Version 2.0" __license__ = "Apache License, Version 2.0"
__version__ = '1.0.2' __version__ = '1.0.3'
__all__ = ['cssmin'] __all__ = ['cssmin']
import re as _re import re as _re