diff --git a/README.rst b/README.rst index 19fbdbfe..c52a0eab 100644 --- a/README.rst +++ b/README.rst @@ -3,8 +3,8 @@ wltp: generate WLTC gear-shifts based on vehicle characteristics ################################################################ |dev-status| |build-status| |cover-status| |docs-status| |pypi-status| |downloads-count| |github-issues| -:release: 0.1.1a0 -:date: 2019-05-25 23:46:42 +:release: 0.1.2a0 +:date: 2019-06-05 22:10:33 :documentation: https://wltp.readthedocs.org/ (build-date: |today|) :source: https://github.com/JRCSTU/wltp :pypi-repo: https://pypi.python.org/pypi/wltp @@ -120,7 +120,7 @@ you can try the following commands: .. code-block:: bash $ wltp --version - 0.1.1a0 + 0.1.2a0 $ wltp --help ... @@ -278,7 +278,7 @@ After installation, it is important that you check which version is visible in y .. code-block:: bash $ wltp --version - 0.1.1a0 + 0.1.2a0 To install for different Python versions, repeat the procedure for every required version. @@ -499,7 +499,7 @@ First run :command:`python` or :command:`ipython` and try to import the project >>> import wltp >>> wltp.__version__ ## Check version once more. - '0.1.1a0' + '0.1.2a0' >>> wltp.__file__ ## To check where it was installed. # doctest: +SKIP /usr/local/lib/site-package/wltp-... diff --git a/wltp/_version.py b/wltp/_version.py index e99f0c26..2f68a0aa 100644 --- a/wltp/_version.py +++ b/wltp/_version.py @@ -1,3 +1,3 @@ """Authoritative project's version-info""" -__version__ = "0.1.1a0" ## Semantic-version: Update identifiers also in README.rst. -__updated__ = "2019-05-25 23:46:42" +__version__ = "0.1.2a0" ## Semantic-version: Update identifiers also in README.rst. +__updated__ = "2019-06-05 22:10:33"