diff --git a/docs/CHANGES b/docs/CHANGES index 3eed306..fcd4063 100644 --- a/docs/CHANGES +++ b/docs/CHANGES @@ -1,4 +1,4 @@ -Changes with version +Changes with version 1.0.3 *) Added support for the following grouping @-rules: @supports, @document, @keyframes diff --git a/docs/_userdoc/conf.py b/docs/_userdoc/conf.py index d8b954b..9686286 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.2' +release = '1.0.3' # 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 348b477..74c8e59 100644 --- a/docs/_userdoc/website_download.txt +++ b/docs/_userdoc/website_download.txt @@ -9,11 +9,11 @@ Source Packages Current Stable Version '''''''''''''''''''''' -- `rcssmin-1.0.2.tar.xz `_ -- `rcssmin-1.0.2.tar.bz2 `_ -- `rcssmin-1.0.2.tar.gz `_ -- `rcssmin-1.0.2.zip `_ -- `rcssmin-1.0.2.digests `_ +- `rcssmin-1.0.3.tar.xz `_ +- `rcssmin-1.0.3.tar.bz2 `_ +- `rcssmin-1.0.3.tar.gz `_ +- `rcssmin-1.0.3.zip `_ +- `rcssmin-1.0.3.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 -`_\. +`_\. 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.2.digests - rcssmin-1.0.2.tar.bz2: OK - rcssmin-1.0.2.tar.gz: OK - rcssmin-1.0.2.tar.xz: OK - rcssmin-1.0.2.zip: OK + $ md5sum -c rcssmin-1.0.3.digests + rcssmin-1.0.3.tar.bz2: OK + rcssmin-1.0.3.tar.gz: OK + rcssmin-1.0.3.tar.xz: OK + rcssmin-1.0.3.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.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: Good signature from "Andre Malo " gpg: aka "Andr\xe9\x20Malo " diff --git a/package.cfg b/package.cfg index eb5018f..0991621 100644 --- a/package.cfg +++ b/package.cfg @@ -25,7 +25,7 @@ pypy.max = 2.0 jython.min = 2.5 jython.max = 2.7 -version.number = 1.0.2 +version.number = 1.0.3 author.name = André Malo author.email = nd@perlig.de diff --git a/rcssmin.py b/rcssmin.py index 49371b0..c8e9dc3 100755 --- a/rcssmin.py +++ b/rcssmin.py @@ -78,7 +78,7 @@ __author__ = "Andr\xe9 Malo" __author__ = getattr(__author__, 'decode', lambda x: __author__)('latin-1') __docformat__ = "restructuredtext en" __license__ = "Apache License, Version 2.0" -__version__ = '1.0.2' +__version__ = '1.0.3' __all__ = ['cssmin'] import re as _re