浏览代码

Version number -> 2.7

Thomas Kluyver 4 年之前
父节点
当前提交
d3af32159c
共有 2 个文件被更改,包括 12 次插入1 次删除
  1. 11 0
      doc/releasenotes.rst
  2. 1 1
      nsist/__init__.py

+ 11 - 0
doc/releasenotes.rst

@@ -1,6 +1,17 @@
 Release notes
 Release notes
 =============
 =============
 
 
+Version 2.7
+-----------
+
+* Fix checking compatibility of wheels with ``abi3`` tags, e.g. cryptography
+  (:ghpull:`227`).
+* Ensure that the local packages directory is added to ``sys.path`` as an
+  absolute path, not a relative one (:ghpull:`226`).
+* Pynsist now requires Python 3.6 or above, although it can still build
+  installers with Python 3.5 or above.
+* Update details of available examples (:ghpull:`215`, :ghpull:`223`).
+
 Version 2.6
 Version 2.6
 -----------
 -----------
 
 

+ 1 - 1
nsist/__init__.py

@@ -25,7 +25,7 @@ from .nsiswriter import NSISFileWriter
 from .wheels import WheelGetter
 from .wheels import WheelGetter
 from .util import download, get_cache_dir, normalize_path
 from .util import download, get_cache_dir, normalize_path
 
 
-__version__ = '2.6'
+__version__ = '2.7'
 
 
 pjoin = os.path.join
 pjoin = os.path.join
 logger = logging.getLogger(__name__)
 logger = logging.getLogger(__name__)