Selaa lähdekoodia

Next release is 2.1, not 2.2

Thomas Kluyver 7 vuotta sitten
vanhempi
säilyke
c772cfb829
2 muutettua tiedostoa jossa 4 lisäystä ja 8 poistoa
  1. 3 7
      doc/releasenotes.rst
  2. 1 1
      nsist/__init__.py

+ 3 - 7
doc/releasenotes.rst

@@ -1,20 +1,16 @@
 Release notes
 =============
 
-Version 2.2
+Version 2.1
 -----------
 
 * Ensure that if an icon is specified it will be used during install and
   uninstall, and as the icon for the installer itself (:ghpull:`143`).
-* Add handling of a license file. If a `license_file` is given in the
-  `Application` section of the configuration file an additional step will take
+* Add handling of a license file. If a ``license_file`` is given in the
+  ``Application`` section of the configuration file an additional step will take
   place before installation to check the user's agreement to abide by the
   displayed license. If the license is not given, the extra step is omitted
   (the default behaviour) (:ghpull:`143`).
-
-Version 2.1
------------
-
 * Fix for launching Python subprocesses with the installed packages available
   for import (:ghpull:`142`).
 * Ensure ``.pth`` files in the installed packages directory are read

+ 1 - 1
nsist/__init__.py

@@ -26,7 +26,7 @@ from .nsiswriter import NSISFileWriter
 from .pypi import fetch_pypi_wheels
 from .util import download, text_types, get_cache_dir
 
-__version__ = '2.2'
+__version__ = '2.1'
 
 pjoin = os.path.join
 logger = logging.getLogger(__name__)