From 02c902d336a04b8df692ed9d96cb88a7cd8b8edc Mon Sep 17 00:00:00 2001 From: rsoyding Date: Sat, 27 Apr 2024 18:35:39 +0200 Subject: [PATCH] Bump version --- changelog.md | 8 ++++++++ pyproject.toml | 2 +- src/caroa04/caroa04.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index a346ffb..ce7cf14 100644 --- a/changelog.md +++ b/changelog.md @@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.1] - 2024-04-27 +### Changed +- In start method, interface parameter is made optional, #11 + +### Fixed +- Fix code snippet in documentation , #10 + + ## [1.0.0] - 2024-04-26 ### Changed - Use notifier from can library to allow sharing the bus with other bus users, #7 diff --git a/pyproject.toml b/pyproject.toml index 496bab6..fe61161 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "caroa04" -version = "1.0.0" +version = "1.0.1" description = "Library to control the CAROA04 CAN-IO expander device from eletechsup." readme = "README.rst" requires-python = ">=3.8" diff --git a/src/caroa04/caroa04.py b/src/caroa04/caroa04.py index a6832a1..018616b 100644 --- a/src/caroa04/caroa04.py +++ b/src/caroa04/caroa04.py @@ -10,7 +10,7 @@ logging.basicConfig(level=logging.INFO) __author__ = "R. Soyding" -__version__ = "1.0.0" +__version__ = "1.0.1" MSGID_DO_WRITE = 0x100 MSGID_DO_READ = 0x200