Przeglądaj źródła

Prepare release notes for 2.1 release

Thomas Kluyver 7 lat temu
rodzic
commit
18e554bb0b
4 zmienionych plików z 13 dodań i 1 usunięć
  1. 3 0
      doc/conf.py
  2. 1 0
      doc/pypi-requirements.txt
  3. 8 0
      doc/releasenotes.rst
  4. 1 1
      nsist/__init__.py

+ 3 - 0
doc/conf.py

@@ -37,8 +37,11 @@ extensions = [
     'sphinx.ext.autodoc',
     'sphinx.ext.intersphinx',
     'sphinx.ext.viewcode',
+    'sphinxcontrib_github_alt',
 ]
 
+github_project_url = "https://github.com/takluyver/pynsist"
+
 # Add any paths that contain templates here, relative to this directory.
 templates_path = ['_templates']
 

+ 1 - 0
doc/pypi-requirements.txt

@@ -3,3 +3,4 @@ requests
 win_cli_launchers
 yarg
 requests_download
+sphinxcontrib_github_alt

+ 8 - 0
doc/releasenotes.rst

@@ -1,6 +1,14 @@
 Release notes
 =============
 
+Version 2.1
+-----------
+
+* Fix for launching Python subprocesses with the installed packages available
+  for import (:ghpull:`142`).
+* Ensure ``.pth`` files in the installed packages directory are read
+  (:ghpull:`138`).
+
 Version 2.0
 -----------
 

+ 1 - 1
nsist/__init__.py

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