Skip to content

Commit

Permalink
Prepare v0.4.3 (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
kplindegaard authored Aug 25, 2023
1 parent c8c7e01 commit 141937d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Notable changes to the smbus2 project are recorded here.

## [Unreleased]
No changes since last release.

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


[Unreleased]: https://github.com/kplindegaard/smbus2/compare/0.4.2...HEAD
[Unreleased]: https://github.com/kplindegaard/smbus2/compare/0.4.3...HEAD
[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
[0.4.0]: https://github.com/kplindegaard/smbus2/compare/0.3.0...0.4.0
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ A drop-in replacement for smbus-cffi/smbus-python in pure Python

[![Build Status](https://github.com/kplindegaard/smbus2/actions/workflows/python-build-test.yml/badge.svg?branch=master)](https://github.com/kplindegaard/smbus2/actions/workflows/python-build-test.yml)
[![Documentation Status](https://readthedocs.org/projects/smbus2/badge/?version=latest)](http://smbus2.readthedocs.io/en/latest/?badge=latest)
![CodeQL](https://github.com/kplindegaard/smbus2/actions/workflows/codeql-analysis.yml/badge.svg?branch=master)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=kplindegaard_smbus2&metric=alert_status)](https://sonarcloud.io/dashboard?id=kplindegaard_smbus2)

![Python Verions](https://img.shields.io/pypi/pyversions/smbus2.svg)
Expand All @@ -11,7 +12,7 @@ A drop-in replacement for smbus-cffi/smbus-python in pure Python

# Introduction

smbus2 is (yet another) pure Python implementation of of the [python-smbus](http://www.lm-sensors.org/browser/i2c-tools/trunk/py-smbus/) package.
smbus2 is (yet another) pure Python implementation of the [python-smbus](http://www.lm-sensors.org/browser/i2c-tools/trunk/py-smbus/) package.

It was designed from the ground up with two goals in mind:

Expand Down
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.2"
__version__ = "0.4.3"
__all__ = ["SMBus", "i2c_msg", "I2cFunc"]

0 comments on commit 141937d

Please sign in to comment.