From 83daed9eed46c5205c647757c0ac5904ccf45641 Mon Sep 17 00:00:00 2001 From: Kostis Anagnostopoulos Date: Fri, 16 Aug 2019 13:02:42 +0300 Subject: [PATCH] chore(VER): 1.0.0.dev9 --> dev10 --- CHANGES.rst | 7 ++++--- README.rst | 8 ++++---- wltp/_version.py | 4 ++-- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index ed20834b..74e0d7a7 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -57,8 +57,8 @@ TODOs Changelog ========= -v1.0.0.dev8 (7-Aug-2019): PY3.5 only & real work! --------------------------------------------------- +v1.0.0.dev10 (16-Aug-2019): PY3.5 only & real work! +---------------------------------------------------- - Drop support for Python 2.7 & <3.6, due to `f"string:`, among others... The supported Pythons `covers 84% of 2018 Python-3 installations (71% of Pythons in total) `_ @@ -73,7 +73,8 @@ v1.0.0.dev8 (7-Aug-2019): PY3.5 only & real work! - datamodel: - BREAK: renamed module ``wltp.model --> wltp.datamodel``. - - FIX: CLASS1 has now +1 PART(low) at the end, as by the recent spec. + - FIX: CLASS1 has now +1 PART(low) at the end, as by the recent spec, + and overlapping phases fixed. - break: V-traces is renamed from `cycle --> v_cycle`. - break: cycle-part limits are plain lists-of-limits (not list-of-pairs). - break: flatten model, merging `vehicle` & `params` properties up to root. diff --git a/README.rst b/README.rst index 05323078..177997be 100644 --- a/README.rst +++ b/README.rst @@ -3,8 +3,8 @@ wltp: generate WLTC gear-shifts based on vehicle characteristics ################################################################ |binder| |dev-status| |build-status| |cover-status| |docs-status| |pypi-status| |downloads-count| |github-issues| |codestyle| -:release: 1.0.0.dev9 -:date: 2019-08-08 16:44:35 +:release: 1.0.0.dev10 +:date: 2019-08-16 12:56:44 :documentation: https://wltp.readthedocs.org/ (build-date: |today|) :source: https://github.com/JRCSTU/wltp :live-demo: https://mybinder.org/v2/gh/JRCSTU/wltp/master?urlpath=lab/tree/Notebooks/README.md @@ -113,7 +113,7 @@ with *pre-commit hook* for auto-formatting python-code with *black*: .. code-block:: bash $ wltp --version - 1.0.0.dev9 + 1.0.0.dev10 $ wltp --help ... @@ -297,7 +297,7 @@ First run :command:`python` or :command:`ipython` and try to import the project >>> import wltp >>> wltp.__version__ ## Check version once more. - '1.0.0.dev9' + '1.0.0.dev10' >>> 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 ae67e955..85b5a1b8 100644 --- a/wltp/_version.py +++ b/wltp/_version.py @@ -1,3 +1,3 @@ """Authoritative project's version-info""" -__version__ = "1.0.0.dev9" ## Semantic-version: Update identifiers also in README.rst. -__updated__ = "2019-08-08 16:44:35" +__version__ = "1.0.0.dev10" ## Semantic-version: Update identifiers also in README.rst. +__updated__ = "2019-08-16 12:56:44"