Selaa lähdekoodia

Version number -> 1.10

Thomas Kluyver 8 vuotta sitten
vanhempi
säilyke
9cd4cd73e0
2 muutettua tiedostoa jossa 4 lisäystä ja 2 poistoa
  1. 3 1
      doc/conf.py
  2. 1 1
      nsist/__init__.py

+ 3 - 1
doc/conf.py

@@ -20,6 +20,8 @@ import os
 # documentation root, use os.path.abspath to make it absolute, like shown here.
 sys.path.insert(0, os.path.abspath('..'))
 
+import pynsist
+
 # -- General configuration ------------------------------------------------
 
 # If your documentation needs a minimal Sphinx version, state it here.
@@ -55,7 +57,7 @@ copyright = u'2014, Thomas Kluyver'
 # built documents.
 #
 # The short X.Y version.
-version = '1.9'
+version = pynsist.__version__
 # The full version, including alpha/beta/rc tags.
 release = version
 

+ 1 - 1
nsist/__init__.py

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