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

Commit

Permalink
chore(VER): 1.0.0.dev9 --> dev10
Browse files Browse the repository at this point in the history
  • Loading branch information
ankostis committed Aug 16, 2019
1 parent 6f5ed12 commit 83daed9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
7 changes: 4 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
<https://www.jetbrains.com/research/python-developers-survey-2018/#python-3-adoption>`_
Expand All @@ -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.
Expand Down
8 changes: 4 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
...
Expand Down Expand Up @@ -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-...
Expand Down
4 changes: 2 additions & 2 deletions wltp/_version.py
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 83daed9

Please sign in to comment.