Skip to content

Commit

Permalink
Update changelog and version number
Browse files Browse the repository at this point in the history
  • Loading branch information
multiplemonomials committed Mar 19, 2024
1 parent 6a82d3d commit 0cdd6ee
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,27 @@ Lorem Ipsum dolor sit amet.

_______________________________________________________________________________

## [0.3.0] - 2024-03-18

First (hopefully) stable release!

### Added

- SPI and UART APIs are now documented
- Added new `cy_serial_cli serial-term` command which opens a miniterm instance on the SCB device
- Added new `cy_serial_cli spi-transaction` command which allows doing SPI transactions from the command line
- README now contains a section about MacOS usage.

### Changed

- CLI now uses typer instead of argparse. Besides making it look cooler, this improves type safety and adds some much more understandable exception handlers for the CLI.

### Fixed

- Check has been added for the issue that causes changing the type of a UART_CDC device to fail on MacOS. Cannot completely fix the issue but can at least notify the user and ask them to rerun the command with sudo.

_______________________________________________________________________________

## [0.2.0] - 2024-03-03

I2C and CLI update!
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "cy_serial_bridge"
# this is used by Ruff to disable "upgrade to feature x" inspections where x was added
# after the given version
requires-python = ">=3.10"
version = "0.2.0"
version = "0.3.0"
description = "Pure Python driver for using and reconfiguring the CY7C652xx family of USB to SPI/I2C/UART bridge ICs."
authors = [
{name = "Jamie Smith", email = "[email protected]"},
Expand Down Expand Up @@ -35,7 +35,7 @@ classifiers = [

[tool.poetry]
name = "cy_serial_bridge"
version = "0.2.0"
version = "0.3.0"
description = "Pure Python driver for using and reconfiguring the CY7C652xx family of USB to SPI/I2C/UART bridge ICs."
authors = ["Jamie Smith <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 0cdd6ee

Please sign in to comment.