diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 32b0f6ce..6af1020a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.112.0 +current_version = 0.113.0 [bumpversion:file:setup.py] diff --git a/README.md b/README.md index b15f1839..7c949372 100644 --- a/README.md +++ b/README.md @@ -255,6 +255,7 @@ https://github.com/JuanIrache/gopro-telemetry ## Latest Changes If you find any issues with new releases, please discuss in [GitHub Discussions](https://github.com/time4tea/gopro-dashboard-overlay/discussions) +- 0.113.0 [Enhancement] Add arc gauge - See [Arc Gauge Docs](docs/xml/examples/06-cairo-gauge-arc-annotated/README.md) for examples - 0.112.0 [Enhancement] Show loading speed of gopro data. - 0.111.0 [Fix] Simple Fix for #157 - timeout when reading large data files. Thanks to [@rpoxo](https://github.com/rpoxo) for raising. - 0.110.0 [Fix] Hopefully make the 'pace' units more robust. New metric format "pace". diff --git a/gopro_overlay/__version__.py b/gopro_overlay/__version__.py index 1b967e27..5467f376 100644 --- a/gopro_overlay/__version__.py +++ b/gopro_overlay/__version__.py @@ -1,7 +1,7 @@ __title__ = 'gopro_overlay' __description__ = 'Dashboards for GoPro' __url__ = 'https://github.com/time4tea/gopro-dashboard-overlay' -__version__ = '0.112.0' +__version__ = '0.113.0' __author__ = 'James Richardson' __author_email__ = 'james@time4tea.net' __license__ = 'GPLv3' diff --git a/setup.py b/setup.py index 0ed993f0..fc063bda 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( name="gopro-overlay", - version="0.112.0", + version="0.113.0", description="Overlay graphics dashboards onto GoPro footage", long_description=README, long_description_content_type="text/markdown",