Skip to content

Commit

Permalink
Prep release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kplindegaard committed Oct 19, 2024
1 parent f88fe84 commit 2852cf2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@
Notable changes to the smbus2 project are recorded here.

## [Unreleased]
- Python 3.12 added.

## [0.5.0] - 2024-10-19
- Slight change of `SMBus` object life-cycle to better handle "open -> close -> open" scenarios. [107](https://github.com/kplindegaard/smbus2/pull/107).
- Maintenance updates:
- Documentation builds again! [106](https://github.com/kplindegaard/smbus2/pull/106).
- Typing corrections. [109](https://github.com/kplindegaard/smbus2/pull/109).
- Python 3.12, 3.13 added.

## [0.4.3] - 2023-08-25
- Build pipeline and test updates only:
Expand Down Expand Up @@ -100,7 +106,8 @@ with SMBus(1) as bus:
First published version.


[Unreleased]: https://github.com/kplindegaard/smbus2/compare/0.4.3...HEAD
[Unreleased]: https://github.com/kplindegaard/smbus2/compare/0.5.0...HEAD
[0.5.0]: https://github.com/kplindegaard/smbus2/compare/0.4.3...0.5.0
[0.4.3]: https://github.com/kplindegaard/smbus2/compare/0.4.2...0.4.3
[0.4.2]: https://github.com/kplindegaard/smbus2/compare/0.4.1...0.4.2
[0.4.1]: https://github.com/kplindegaard/smbus2/compare/0.4.0...0.4.1
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ def find_version(*file_paths):
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
],
)
2 changes: 1 addition & 1 deletion smbus2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@

from .smbus2 import SMBus, i2c_msg, I2cFunc # noqa: F401

__version__ = "0.4.3"
__version__ = "0.5.0"
__all__ = ["SMBus", "i2c_msg", "I2cFunc"]

0 comments on commit 2852cf2

Please sign in to comment.