diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f864f3..aa53b58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Changelog Notable changes to the smbus2 project are recorded here. -## [0.2.3] - 2019-01-10 +## [0.2.3] - 2019-01-13 ### Fixed - Incorrect `i2c_msg` created in Python 3.x if str input contains ascii chars >= 128. diff --git a/smbus2/__init__.py b/smbus2/__init__.py index 0579cfc..22d2cba 100644 --- a/smbus2/__init__.py +++ b/smbus2/__init__.py @@ -22,4 +22,4 @@ from .smbus2 import SMBus, SMBusWrapper, i2c_msg # noqa: F401 -__version__ = "0.2.2" +__version__ = "0.2.3"