Explorar el Código

Version number -> 1.11

Thomas Kluyver hace 8 años
padre
commit
4a3d0a899e
Se han modificado 2 ficheros con 8 adiciones y 4 borrados
  1. 7 3
      doc/releasenotes.rst
  2. 1 1
      nsist/__init__.py

+ 7 - 3
doc/releasenotes.rst

@@ -1,6 +1,13 @@
 Release notes
 =============
 
+Version 1.11
+------------
+
+* Lists in the config file, such as ``packages`` and ``pypi_wheels`` can now
+  begin on the line after the key.
+* Clearer error if the specified config file is not found.
+
 Version 1.10
 ------------
 
@@ -10,14 +17,11 @@ Version 1.10
 * The directory containing ``python.exe`` is now added to the ``%PATH%``
   environment variable when your application runs. This fixes a DLL loading
   issue for PyQt5 if you use bundled Python.
-* Lists in the config file, such as ``packages`` and ``pypi_wheels`` can now
-  begin on the line after the key.
 * When installing a 64-bit application, the uninstall registry keys are now
   added to the 64-bit view of the registry.
 * Fixed an error when using wheels which install files into the same package,
   such as ``PyQt5`` and ``PyQtChart``.
 * Issue a warning when we can't find the cache directory on Windows.
-* Clearer error if the specified config file is not found.
 
 Version 1.9
 -----------

+ 1 - 1
nsist/__init__.py

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