From: Sergey Matveev Date: Fri, 27 Dec 2019 11:34:26 +0000 (+0300) Subject: Fix __version__ value X-Git-Tag: 4.3^0 X-Git-Url: http://www.git.cypherpunks.ru/?p=pygost.git;a=commitdiff_plain;h=feb09a8f4b63d7b40aa2d888aaaf0058c4cdf4b1 Fix __version__ value --- diff --git a/VERSION b/VERSION index bf77d54..69df05f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.2 +4.3 diff --git a/install.texi b/install.texi index b9cf7ce..20ca6bd 100644 --- a/install.texi +++ b/install.texi @@ -1,7 +1,7 @@ @node Download @unnumbered Download -@set VERSION 4.2 +@set VERSION 4.3 No additional dependencies except Python 2.7/3.x interpreter are required. diff --git a/news.texi b/news.texi index ec3d2f2..384258a 100644 --- a/news.texi +++ b/news.texi @@ -3,6 +3,10 @@ @table @strong +@anchor{Release 4.3} +@item 4.3 +Dummy release with fixed @code{pygost.__version__}. + @anchor{Release 4.2} @item 4.2 @itemize diff --git a/pygost/__init__.py b/pygost/__init__.py index 4991c37..306746e 100644 --- a/pygost/__init__.py +++ b/pygost/__init__.py @@ -3,4 +3,4 @@ PyGOST is free software: see the file COPYING for copying conditions. """ -__version__ = "4.1" +__version__ = "4.3"