Skip to content

Commit a23241f

Browse files
committed
Bump version: 0.1.0 -> 0.2.0
1 parent a80706b commit a23241f

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## 0.2.0 (2022-10-27)
2+
3+
### Feat
4+
5+
- added examples
6+
7+
### Fix
8+
9+
- links
10+
- pylint too-many-locals for autogenerated properties
11+
- adding license files
12+
- missing licenses
13+
- C0103 variable not conform
14+
- unused import
15+
- disable warning on pytest fixture
16+
- pylint C0122
17+
- changelog typo
18+
119
## 0.1.0 (2022-10-26)
220

321
### Feat

gpio_expander.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
except ImportError:
4141
pass
4242

43-
__version__ = "0.1.0"
43+
__version__ = "0.2.0"
4444
__repo__ = "https://github.com/gpongelli/CircuitPython_gpio_expander.git"
4545

4646
import adafruit_bus_device.i2c_device as i2cdevice

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[tool.poetry]
66
name = "circuitpython_pca95xx"
7-
version = "0.1.0"
7+
version = "0.2.0"
88
homepage = "https://github.com/gpongelli/CircuitPython_gpio_expander.git"
99
description = "CircuitPython helper library for gpio expanders (Texas Instrument PCA95xx and TCA95xx chips)."
1010
authors = ["Gabriele Pongelli <gabriele.pongelli@gmail.com>"]
@@ -90,7 +90,7 @@
9090

9191
[tool.commitizen]
9292
name = "cz_conventional_commits"
93-
version = "0.1.0"
93+
version = "0.2.0"
9494
version_files = [
9595
"gpio_expander.py:__version__",
9696
"pyproject.toml:version"

0 commit comments

Comments
 (0)