Skip to content

Commit 31fa67c

Browse files
authored
Merge pull request #8 from basilfx/release/3.0.0
Release v3.0.0
2 parents b4ebcd9 + 82b24d4 commit 31fa67c

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## v3.0.0
4+
Released 13 November 2022
5+
6+
Highlights:
7+
* Changed: renamed `--readonly` to `--read-only` in CLI arguments.
8+
* Changed: renamed `readonly` to `read_only` in `checksum()` method.
9+
* Improved: Python 3 type annotations.
10+
* Removed: Python 2 support.
11+
* Improved: project set-up.
12+
13+
The full list of commits can be found [here](https://github.com/basilfx/lpc_checksum/compare/v2.2.0...v3.0.0).
14+
315
## v2.2.0
416
Released 18 September 2020
517

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ to be compiled.
66

77
[![Linting](https://github.com/basilfx/lpc_checksum/actions/workflows/lint.yml/badge.svg)](https://github.com/basilfx/lpc_checksum/actions/workflows/lint.yml)
88
[![Testing](https://github.com/basilfx/lpc_checksum/actions/workflows/test.yml/badge.svg)](https://github.com/basilfx/lpc_checksum/actions/workflows/test.yml)
9-
[![PyPI version](https://badge.fury.io/py/lpc_checksum.svg)](https://badge.fury.io/py/lpc_checksum)
9+
[![PyPI version](https://badge.fury.io/py/lpc-checksum.svg)](https://badge.fury.io/py/lpc-checksum)
1010

1111
## Requirements
1212
The only requirement is Python 3.9 or newer.

lpc_checksum/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import intelhex
66

7-
__version__ = "2.2.0"
7+
__version__ = "3.0.0"
88

99
"""
1010
Calculate checksum image for LPC firmware images and write. Code is a Python

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ packages = [
3232
]
3333
readme = "README.md"
3434
repository = "https://github.com/basilfx/lpc_checksum"
35-
version = "2.2.0"
35+
version = "3.0.0"
3636

3737
[tool.poetry.dependencies]
3838
python = "^3.9"

0 commit comments

Comments
 (0)