]> Cypherpunks.ru repositories - pyderasn.git/commitdiff
Prepare for release
authorSergey Matveev <stargrave@stargrave.org>
Sun, 13 Dec 2020 12:14:34 +0000 (15:14 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Sun, 13 Dec 2020 12:28:51 +0000 (15:28 +0300)
MANIFEST.in
VERSION
doc/build.log.do
doc/install.rst
doc/news.rst
pyderasn.py

index 1163e7983d8866b90a04c6296f309de8a27603b7..99e829366704edfaf3707efb0e163e5a4eced063 100644 (file)
@@ -2,6 +2,7 @@ include .coveragerc
 include AUTHORS
 include COPYING
 include COPYING.LESSER
+include doc/build.log.do
 include doc/conf.py
 include doc/download.rst
 include doc/examples.rst
@@ -10,7 +11,6 @@ include doc/feedback.rst
 include doc/index.rst
 include doc/install.rst
 include doc/limitations.rst
-include doc/Makefile
 include doc/news.rst
 include doc/performance.rst
 include doc/pip-requirements.txt
diff --git a/VERSION b/VERSION
index b8eb0263502da49751d19c5e9867e220a58cd5f3..2983cad049515b2f3cdad093170575baac65ee19 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-8.1
+8.2
index 2b9c5e9eda9288590c4de3eb79edd940c3ee2ed3..adaebf6fe14fd7e800261e2c30a67f066f552173 100644 (file)
@@ -1,7 +1,7 @@
 rm -fr _build
 html=_build/html
 PYTHONPATH=.. ${PYTHON:=python} -msphinx . $html
-cp -r download $html
+[ -d download ] && cp -r download $html || echo No download directory, skipping
 rm -r $html/.doctrees $html/.buildinfo
 find $html -type d -exec chmod 755 {} \;
 find $html -type f -exec chmod 644 {} \;
index c8482ef5e676e4100641b296da701c19f47fe6d1..7257589023c9b9b5e7204775ab5e406226f260f2 100644 (file)
@@ -4,11 +4,11 @@ Install
 Preferable way is to :ref:`download <download>` tarball with the
 signature from `official website <http://www.pyderasn.cypherpunks.ru/>`__::
 
-    $ [fetch|wget] http://www.pyderasn.cypherpunks.ru/pyderasn-8.1.tar.xz
-    $ [fetch|wget] http://www.pyderasn.cypherpunks.ru/pyderasn-8.1.tar.xz.sig
-    $ gpg --verify pyderasn-8.1.tar.xz.sig pyderasn-8.1.tar.xz
-    $ xz --decompress --stdout pyderasn-8.1.tar.xz | tar xf -
-    $ cd pyderasn-8.1
+    $ [fetch|wget] http://www.pyderasn.cypherpunks.ru/pyderasn-8.2.tar.xz
+    $ [fetch|wget] http://www.pyderasn.cypherpunks.ru/pyderasn-8.2.tar.xz.sig
+    $ gpg --verify pyderasn-8.2.tar.xz.sig pyderasn-8.2.tar.xz
+    $ xz --decompress --stdout pyderasn-8.2.tar.xz | tar xf -
+    $ cd pyderasn-8.2
     $ python setup.py install
     # or copy pyderasn.py (+six.py, possibly termcolor.py) to your PYTHONPATH
 
@@ -21,7 +21,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==8.1 --hash=sha256:TO-BE-FILLED
+    pyderasn==8.2 --hash=sha256:TO-BE-FILLED
     six==1.14.0 --hash=sha256:236bdbdce46e6e6a3d61a337c0f8b763ca1e8717c03b369e87a7ec7ce1319c0a
     EOF
     $ pip install --requirement requirements.txt
index dd587b70a285c992e30bd6b7fc45fcd9bda7a3be..cfb092a2f05f6ea07cf5b743fda3c6ce5136b015 100644 (file)
@@ -1,6 +1,12 @@
 News
 ====
 
+.. _release8.2:
+
+8.2
+---
+* Trivial documentation fixes.
+
 .. _release8.1:
 
 8.1
index bc2911b5f9b185c9725d998aae44d54f4cabe819..593bf94d6633d51357366ef5a268a285e0ec6cea 100755 (executable)
@@ -1204,7 +1204,7 @@ except ImportError:  # pragma: no cover
     def colored(what, *args, **kwargs):
         return what
 
-__version__ = "8.1"
+__version__ = "8.2"
 
 __all__ = (
     "agg_octet_string",