Skip to content

Commit

Permalink
Bump version: 0.7.0 → 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mpapenbr committed Jun 3, 2023
1 parent 3f045f2 commit 3203c65
Show file tree
Hide file tree
Showing 6 changed files with 78 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.7.0
current_version = 0.8.0
commit = True
tag = True

Expand Down
72 changes: 72 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,78 @@ Changelog
=========


v0.8.0 (2023-06-03)
-------------------

Changes
~~~~~~~
- Report required version on ping cmd. [mpapenbr]

Fix
~~~
- Send pit lane info only if pit stops were detected. [mpapenbr]

Other
~~~~~
- Chore: Upgrade to Python 3.11 Fixes #89. [mpapenbr]
- Chore: changed dependabot config. [mpapenbr]
- Chore: bump versions. [mpapenbr]
- Build(deps): bump pytest from 7.2.1 to 7.3.0. [dependabot[bot]]

Bumps [pytest](https://github.com/pytest-dev/pytest) from 7.2.1 to 7.3.0.
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](https://github.com/pytest-dev/pytest/compare/7.2.1...7.3.0)

---
updated-dependencies:
- dependency-name: pytest
dependency-type: direct:production
update-type: version-update:semver-minor
...
- Build(deps): bump pytest from 7.2.0 to 7.2.1. [dependabot[bot]]

Bumps [pytest](https://github.com/pytest-dev/pytest) from 7.2.0 to 7.2.1.
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](https://github.com/pytest-dev/pytest/compare/7.2.0...7.2.1)

---
updated-dependencies:
- dependency-name: pytest
dependency-type: direct:production
update-type: version-update:semver-patch
...
- Build(deps): bump pyinstaller-hooks-contrib from 2022.14 to 2023.0.
[dependabot[bot]]

Bumps [pyinstaller-hooks-contrib](https://github.com/pyinstaller/pyinstaller-hooks-contrib) from 2022.14 to 2023.0.
- [Release notes](https://github.com/pyinstaller/pyinstaller-hooks-contrib/releases)
- [Changelog](https://github.com/pyinstaller/pyinstaller-hooks-contrib/blob/master/CHANGELOG.rst)
- [Commits](https://github.com/pyinstaller/pyinstaller-hooks-contrib/compare/2022.14...2023.0)

---
updated-dependencies:
- dependency-name: pyinstaller-hooks-contrib
dependency-type: direct:production
update-type: version-update:semver-major
...
- Build(deps): bump cryptography from 39.0.0 to 39.0.2.
[dependabot[bot]]

Bumps [cryptography](https://github.com/pyca/cryptography) from 39.0.0 to 39.0.2.
- [Release notes](https://github.com/pyca/cryptography/releases)
- [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst)
- [Commits](https://github.com/pyca/cryptography/compare/39.0.0...39.0.2)

---
updated-dependencies:
- dependency-name: cryptography
dependency-type: direct:production
update-type: version-update:semver-patch
...


v0.7.0 (2023-01-22)
-------------------

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ Overview
:alt: Documentation Status


.. |commits-since| image:: https://img.shields.io/github/commits-since/mpapenbr/python-racelogger/v0.7.0.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/mpapenbr/python-racelogger/v0.8.0.svg
:alt: Commits since latest release
:target: https://github.com/mpapenbr/python-racelogger/compare/v0.7.0...master
:target: https://github.com/mpapenbr/python-racelogger/compare/v0.8.0...master



Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
year = '2021'
author = 'Markus Papenbrock'
copyright = '{0}, {1}'.format(year, author)
version = release = '0.7.0'
version = release = '0.8.0'

pygments_style = 'trac'
templates_path = ['.']
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def read(*names, **kwargs):

setup(
name='racelogger',
version='0.7.0',
version='0.8.0',
license='Apache-2.0',
description='Racelogger for iRacelog ',
long_description='%s\n%s' % (
Expand Down
2 changes: 1 addition & 1 deletion src/racelogger/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.7.0'
__version__ = '0.8.0'

0 comments on commit 3203c65

Please sign in to comment.