diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 180fcadd..074055bc 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.107.0 +current_version = 0.108.0 [bumpversion:file:setup.py] diff --git a/README.md b/README.md index 51fdc45d..e28c8ff1 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.108.0 [Fix] GPX/GoPro overlay date checking had been broken for a while. Thanks (very much) to [@IbnGit](https://github.com/IbnGit) for raising - 0.107.0 [Feature] New units! - "spm" - steps per minute, and "pace" - see [metrics docs](docs/xml/examples/04-metrics/README.md) for full explanation Thanks [@SlippyJimmy](https://github.com/SlippyJimmy) - 0.106.0 [Feature] New map style "cyclosm" - see: https://www.cyclosm.org/ - An OpenStreetmap for cycling - See map examples for more - 0.105.0 [Behaviour Change] Fix [#150](https://github.com/time4tea/gopro-dashboard-overlay/issues/150) cairo circuit map aspect raio is wrong. Thanks [@yuanduopeng](https://github.com/yuanduopeng) for raising. diff --git a/gopro_overlay/__version__.py b/gopro_overlay/__version__.py index 8424f0fd..acfcdeb9 100644 --- a/gopro_overlay/__version__.py +++ b/gopro_overlay/__version__.py @@ -2,7 +2,7 @@ __title__ = 'gopro_overlay' __description__ = 'Dashboards for GoPro' __url__ = 'https://github.com/time4tea/gopro-dashboard-overlay' -__version__ = '0.107.0' +__version__ = '0.108.0' __author__ = 'James Richardson' __author_email__ = 'james@time4tea.net' __license__ = 'MIT' diff --git a/setup.py b/setup.py index a0da7fd7..807cf07d 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( name="gopro-overlay", - version="0.107.0", + version="0.108.0", description="Overlay graphics dashboards onto GoPro footage", long_description=README, long_description_content_type="text/markdown",