瀏覽代碼

Version number -> 1.12

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

+ 6 - 0
doc/releasenotes.rst

@@ -1,6 +1,12 @@
 Release notes
 Release notes
 =============
 =============
 
 
+Version 1.12
+------------
+
+* Fix a bug with unpacking wheels on Python 2.7, by switching to ``pathlib2``
+  for the pathlib backport.
+
 Version 1.11
 Version 1.11
 ------------
 ------------
 
 

+ 1 - 1
nsist/__init__.py

@@ -34,7 +34,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__ = '1.11'
+__version__ = '1.12'
 
 
 pjoin = os.path.join
 pjoin = os.path.join
 logger = logging.getLogger(__name__)
 logger = logging.getLogger(__name__)