]> Cypherpunks.ru repositories - pyderasn.git/commitdiff
Add PEP-396 compatible module's __version__ 5.5
authorSergey Matveev <stargrave@stargrave.org>
Tue, 17 Dec 2019 16:15:20 +0000 (19:15 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Tue, 17 Dec 2019 16:21:52 +0000 (19:21 +0300)
VERSION
doc/install.rst
doc/news.rst
makedist.sh
pyderasn.py

diff --git a/VERSION b/VERSION
index 37c2d9960ec72414b3941f8f4c1172fb6e3c6e7f..9ad974f6109e4bf8a9c47b6d1870e2b4990d9841 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-5.4
+5.5
index 77294b37dd9217fda406c5360797d7b252da1b1f..ee3d0fc5860c7359354915fe1998c314320a0baf 100644 (file)
@@ -4,11 +4,11 @@ Install
 Preferable way is to :ref:`download <download>` tarball with the
 signature from `official website <http://pyderasn.cypherpunks.ru/>`__::
 
-    $ [fetch|wget] http://pyderasn.cypherpunks.ru/pyderasn-5.4.tar.xz
-    $ [fetch|wget] http://pyderasn.cypherpunks.ru/pyderasn-5.4.tar.xz.sig
-    $ gpg --verify pyderasn-5.4.tar.xz.sig pyderasn-5.4.tar.xz
-    $ xz --decompress --stdout pyderasn-5.4.tar.xz | tar xf -
-    $ cd pyderasn-5.4
+    $ [fetch|wget] http://pyderasn.cypherpunks.ru/pyderasn-5.5.tar.xz
+    $ [fetch|wget] http://pyderasn.cypherpunks.ru/pyderasn-5.5.tar.xz.sig
+    $ gpg --verify pyderasn-5.5.tar.xz.sig pyderasn-5.5.tar.xz
+    $ xz --decompress --stdout pyderasn-5.5.tar.xz | tar xf -
+    $ cd pyderasn-5.5
     $ python setup.py install
     # or copy pyderasn.py (+six.py, possibly termcolor.py) to your PYTHONPATH
 
@@ -19,7 +19,7 @@ You can also find it mirrored on :ref:`download <download>` page.
 You could use pip (**no** OpenPGP authentication is performed!) with PyPI::
 
     $ cat > requirements.txt <<EOF
-    pyderasn==5.4 --hash=sha256:c6b4cfbe3b4bfb3bed1c5b8fc8e5d4cc78fd2abc10a7c1360336471d9a2b4372
+    pyderasn==5.5 --hash=sha256:TODO
     six==1.13.0 --hash=sha256:30f610279e8b2578cab6db20741130331735c781b56053c59c4076da27f06b66
     EOF
     $ pip install --requirement requirements.txt
index 7203dded13e22a8226c58d061a2be4e30b6e8088..94dca18d222605d853470ad8e95bd3b09bca8d6e 100644 (file)
@@ -1,6 +1,12 @@
 News
 ====
 
+.. _release5.5:
+
+5.5
+---
+* PEP-396 compatible module's ``__version__``
+
 .. _release5.4:
 
 5.4
index d947a1d8855e51be22a86a60dd070a5635e1363e..6d9b7e10aeb2afe3ae1f78a19b6e73ef25ec90e5 100755 (executable)
@@ -15,10 +15,10 @@ tar cfI - $tmp/includes | tar xfC - $tmp/pyderasn-"$release"
 
 PYTHONPATH="$tmp/pyderasn-$release" make -C $tmp/pyderasn-"$release"/doc
 
-tar xvfC doc/download/six-1.13.0.tar.xz $tmp --include "*/*six.py"
+tar xvfC doc/download/six-1.13.0.tar.gz $tmp --include "*/*six.py"
 mv -v $tmp/six-*/*six.py $tmp/pyderasn-"$release"
 
-tar xvfC doc/download/termcolor-1.1.0.tar.xz $tmp --include "*/termcolor.py"
+tar xvfC doc/download/termcolor-1.1.0.tar.gz $tmp --include "*/termcolor.py"
 mv -v $tmp/termcolor-*/termcolor.py $tmp/pyderasn-"$release"
 
 pip_hash=$(pip hash dist/pyderasn-"$release".tar.gz | sed -n '$p')
index 5bb41ca944c0212b9a1e84b81566a6b9309ed834..0b04f4eda76be9921b6de95d90e54d6c297e6e16 100755 (executable)
@@ -673,6 +673,7 @@ except ImportError:  # pragma: no cover
     def colored(what, *args, **kwargs):
         return what
 
+__version__ = "5.5"
 
 __all__ = (
     "Any",