From 01d17e96b067a84666a728f0dd6c369043eca355 Mon Sep 17 00:00:00 2001 From: Cielquan Date: Sun, 22 Nov 2020 00:05:23 +0100 Subject: [PATCH] chore: bump version to 1.0.0; update changelog/readme --- CHANGELOG.rst | 13 +++++++++++++ README.rst | 2 +- pyproject.toml | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1667100..fe7fba3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -7,6 +7,19 @@ formelsammlung Change Log .. towncrier release notes start +v1.0.0 (2020-11-21) +------------------- + +Breaking Changes +~~~~~~~~~~~~~~~~ + +- Renamed ``tox_env_exe_runner`` to ``env_exe_runner`` adn added ``runner`` argument + on 2nd place, which takes either `tox` or `nox`. With this both runner are supported. + + +---- + + v0.4.0 (2020-11-14) ------------------- diff --git a/README.rst b/README.rst index 710b4d3..7253fa8 100644 --- a/README.rst +++ b/README.rst @@ -33,7 +33,7 @@ Functionality - ``getenv_typed()``: is a wrapper around ``os.getenv`` returning the value of the environment variable in the correct python type. - ``calculate_string()``: takes an arithmetic expression as a string and calculates it. - ``SphinxDocServer``: is a flask plugin to serve the repository's docs build as HTML (by sphinx). Needs ``flask`` extra to be also installed to work. -- ``tox_env_exe_runner()``: is a function to call a given ``tool`` from the first tox environments that has it installed in a list of tx environments. +- ``env_exe_runner()``: is a function to call a given ``tool`` from the first tox/nox environments that has it installed in a list of tox/nox environments. Prerequisites diff --git a/pyproject.toml b/pyproject.toml index eeb6b5a..29881de 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ #: -- POETRY CONFIG -------------------------------------------------------------------- [tool.poetry] name = "formelsammlung" - version = "0.4.0" + version = "1.0.0" description = "Collection of different functions" authors = ["Cielquan "] license = "GPL-3.0-or-later"