瀏覽代碼

Next release is 2.1, not 2.2

Thomas Kluyver 7 年之前
父節點
當前提交
c772cfb829
共有 2 個文件被更改,包括 4 次插入8 次删除
  1. 3 7
      doc/releasenotes.rst
  2. 1 1
      nsist/__init__.py

+ 3 - 7
doc/releasenotes.rst

@@ -1,20 +1,16 @@
 Release notes
 Release notes
 =============
 =============
 
 
-Version 2.2
+Version 2.1
 -----------
 -----------
 
 
 * Ensure that if an icon is specified it will be used during install and
 * 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`).
   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
   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
   displayed license. If the license is not given, the extra step is omitted
   (the default behaviour) (:ghpull:`143`).
   (the default behaviour) (:ghpull:`143`).
-
-Version 2.1
------------
-
 * Fix for launching Python subprocesses with the installed packages available
 * Fix for launching Python subprocesses with the installed packages available
   for import (:ghpull:`142`).
   for import (:ghpull:`142`).
 * Ensure ``.pth`` files in the installed packages directory are read
 * 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 .pypi import fetch_pypi_wheels
 from .util import download, text_types, get_cache_dir
 from .util import download, text_types, get_cache_dir
 
 
-__version__ = '2.2'
+__version__ = '2.1'
 
 
 pjoin = os.path.join
 pjoin = os.path.join
 logger = logging.getLogger(__name__)
 logger = logging.getLogger(__name__)