File tree Expand file tree Collapse file tree 4 files changed +15
-3
lines changed Expand file tree Collapse file tree 4 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
15
## v2.2.0
4
16
Released 18 September 2020
5
17
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ to be compiled.
6
6
7
7
[ ![ Linting] ( https://github.com/basilfx/lpc_checksum/actions/workflows/lint.yml/badge.svg )] ( https://github.com/basilfx/lpc_checksum/actions/workflows/lint.yml )
8
8
[ ![ 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 )
10
10
11
11
## Requirements
12
12
The only requirement is Python 3.9 or newer.
Original file line number Diff line number Diff line change 4
4
5
5
import intelhex
6
6
7
- __version__ = "2.2 .0"
7
+ __version__ = "3.0 .0"
8
8
9
9
"""
10
10
Calculate checksum image for LPC firmware images and write. Code is a Python
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ packages = [
32
32
]
33
33
readme = " README.md"
34
34
repository = " https://github.com/basilfx/lpc_checksum"
35
- version = " 2.2 .0"
35
+ version = " 3.0 .0"
36
36
37
37
[tool .poetry .dependencies ]
38
38
python = " ^3.9"
You can’t perform that action at this time.
0 commit comments