Bläddra i källkod

Version number -> 2.7

Thomas Kluyver 4 år sedan
förälder
incheckning
d3af32159c
2 ändrade filer med 12 tillägg och 1 borttagningar
  1. 11 0
      doc/releasenotes.rst
  2. 1 1
      nsist/__init__.py

+ 11 - 0
doc/releasenotes.rst

@@ -1,6 +1,17 @@
 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
 -----------
 

+ 1 - 1
nsist/__init__.py

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