Skip to content
This repository was archived by the owner on Jul 12, 2022. It is now read-only.

Commit 83daed9

Browse files
committed
chore(VER): 1.0.0.dev9 --> dev10
1 parent 6f5ed12 commit 83daed9

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

CHANGES.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ TODOs
5757
Changelog
5858
=========
5959

60-
v1.0.0.dev8 (7-Aug-2019): PY3.5 only & real work!
61-
--------------------------------------------------
60+
v1.0.0.dev10 (16-Aug-2019): PY3.5 only & real work!
61+
----------------------------------------------------
6262
- Drop support for Python 2.7 & <3.6, due to `f"string:`, among others...
6363
The supported Pythons `covers 84% of 2018 Python-3 installations (71% of Pythons in total)
6464
<https://www.jetbrains.com/research/python-developers-survey-2018/#python-3-adoption>`_
@@ -73,7 +73,8 @@ v1.0.0.dev8 (7-Aug-2019): PY3.5 only & real work!
7373
- datamodel:
7474

7575
- BREAK: renamed module ``wltp.model --> wltp.datamodel``.
76-
- FIX: CLASS1 has now +1 PART(low) at the end, as by the recent spec.
76+
- FIX: CLASS1 has now +1 PART(low) at the end, as by the recent spec,
77+
and overlapping phases fixed.
7778
- break: V-traces is renamed from `cycle --> v_cycle`.
7879
- break: cycle-part limits are plain lists-of-limits (not list-of-pairs).
7980
- break: flatten model, merging `vehicle` & `params` properties up to root.

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ wltp: generate WLTC gear-shifts based on vehicle characteristics
33
################################################################
44
|binder| |dev-status| |build-status| |cover-status| |docs-status| |pypi-status| |downloads-count| |github-issues| |codestyle|
55

6-
:release: 1.0.0.dev9
7-
:date: 2019-08-08 16:44:35
6+
:release: 1.0.0.dev10
7+
:date: 2019-08-16 12:56:44
88
:documentation: https://wltp.readthedocs.org/ (build-date: |today|)
99
:source: https://github.com/JRCSTU/wltp
1010
: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*:
113113
.. code-block:: bash
114114
115115
$ wltp --version
116-
1.0.0.dev9
116+
1.0.0.dev10
117117
118118
$ wltp --help
119119
...
@@ -297,7 +297,7 @@ First run :command:`python` or :command:`ipython` and try to import the project
297297
>>> import wltp
298298

299299
>>> wltp.__version__ ## Check version once more.
300-
'1.0.0.dev9'
300+
'1.0.0.dev10'
301301

302302
>>> wltp.__file__ ## To check where it was installed. # doctest: +SKIP
303303
/usr/local/lib/site-package/wltp-...

wltp/_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Authoritative project's version-info"""
2-
__version__ = "1.0.0.dev9" ## Semantic-version: Update identifiers also in README.rst.
3-
__updated__ = "2019-08-08 16:44:35"
2+
__version__ = "1.0.0.dev10" ## Semantic-version: Update identifiers also in README.rst.
3+
__updated__ = "2019-08-16 12:56:44"

0 commit comments

Comments
 (0)