Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
rsoyding committed Apr 27, 2024
1 parent c389911 commit 02c902d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/caroa04/caroa04.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 02c902d

Please sign in to comment.