This repository was archived by the owner on Jul 12, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 57
57
Changelog
58
58
=========
59
59
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
+ ----------------------------------------------------
62
62
- Drop support for Python 2.7 & <3.6, due to `f"string: `, among others...
63
63
The supported Pythons `covers 84% of 2018 Python-3 installations (71% of Pythons in total)
64
64
<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!
73
73
- datamodel:
74
74
75
75
- 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.
77
78
- break: V-traces is renamed from `cycle --> v_cycle `.
78
79
- break: cycle-part limits are plain lists-of-limits (not list-of-pairs).
79
80
- break: flatten model, merging `vehicle ` & `params ` properties up to root.
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ wltp: generate WLTC gear-shifts based on vehicle characteristics
3
3
################################################################
4
4
|binder | |dev-status | |build-status | |cover-status | |docs-status | |pypi-status | |downloads-count | |github-issues | |codestyle |
5
5
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
8
8
:documentation: https://wltp.readthedocs.org/ (build-date: |today |)
9
9
:source: https://github.com/JRCSTU/wltp
10
10
: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*:
113
113
.. code-block :: bash
114
114
115
115
$ wltp --version
116
- 1.0.0.dev9
116
+ 1.0.0.dev10
117
117
118
118
$ wltp --help
119
119
...
@@ -297,7 +297,7 @@ First run :command:`python` or :command:`ipython` and try to import the project
297
297
>>> import wltp
298
298
299
299
>>> wltp.__version__ # # Check version once more.
300
- '1.0.0.dev9 '
300
+ '1.0.0.dev10 '
301
301
302
302
>>> wltp.__file__ # # To check where it was installed. # doctest: +SKIP
303
303
/usr/local/lib/site-package/wltp-...
Original file line number Diff line number Diff line change 1
1
"""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 "
You can’t perform that action at this time.
0 commit comments