Skip to content

Commit 192239d

Browse files
update changelog and bump to 0.22.0
1 parent 9e1aed0 commit 192239d

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

CHANGES.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
pylibftdi changes
22
=================
33

4+
0.22.0
5+
------
6+
* Fix: #7 - support for Python3.12
7+
* Fix: #6 - prevent BitBangDevice.port values exceeding 8 bits
8+
* Bumps to linting dependencies (ruff, mypy, black, pylint)
9+
410
0.21.0
511
------
612
* Breaking changes:

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,16 +43,16 @@ def setup(app):
4343

4444
# General information about the project.
4545
project = "pylibftdi"
46-
copyright = "2010-2023, Ben Bass"
46+
copyright = "2010-2024, Ben Bass"
4747

4848
# The version info for the project you're documenting, acts as replacement for
4949
# |version| and |release|, also used in various other places throughout the
5050
# built documents.
5151
#
5252
# The short X.Y version.
53-
version = "0.21.0"
53+
version = "0.22.0"
5454
# The full version, including alpha/beta/rc tags.
55-
release = "0.21.0"
55+
release = "0.22.0"
5656

5757
# List of patterns, relative to source directory, that match files and
5858
# directories to ignore when looking for source files.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pylibftdi"
3-
version="0.21.0"
3+
version="0.22.0"
44
description = "Pythonic interface to FTDI devices using libftdi."
55
license = "MIT"
66
authors = [

src/pylibftdi/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
pylibftdi - python wrapper for libftdi
33
4-
Copyright (c) 2010-2020 Ben Bass <benbass@codedstructure.net>
4+
Copyright (c) 2010-2024 Ben Bass <benbass@codedstructure.net>
55
See LICENSE file for details and (absence of) warranty
66
77
pylibftdi: https://github.com/codedstructure/pylibftdi
@@ -13,7 +13,7 @@
1313
rather than a problem with the libftdi library.
1414
"""
1515

16-
__VERSION__ = "0.21.0"
16+
__VERSION__ = "0.22.0"
1717
__AUTHOR__ = "Ben Bass"
1818

1919

0 commit comments

Comments
 (0)