Skip to content

Commit 2646996

Browse files
update changelog, package version and package.json
1 parent 0424460 commit 2646996

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

changelog.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
<!-- ## [Unreleased] -->
1616

1717
## Released
18+
## [2.3.6] - 2023-07-19
19+
### Added
20+
- Add contribution guideline, see #67
21+
- Content of `package.json` is validated on each test workflow run
22+
- Precommit hooks for `package.json` and package version file validation, yaml style, flake8 and trailing whitespace checks, contributes to #67
23+
24+
### Changed
25+
- `umodbus/version.py` file is validated against the latest changelog entry before running all tests and testing the package creation
26+
27+
### Fixed
28+
- Added missing empty line in several files
29+
1830
## [2.3.5] - 2023-07-01
1931
### Fixed
2032
- Time between RS485 control pin raise and UART transmission reduced by 80% from 1000us to 200us
@@ -290,8 +302,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
290302
- PEP8 style issues on all files of [`lib/uModbus`](lib/uModbus)
291303

292304
<!-- Links -->
293-
[Unreleased]: https://github.com/brainelectronics/micropython-modbus/compare/2.3.5...develop
305+
[Unreleased]: https://github.com/brainelectronics/micropython-modbus/compare/2.3.6...develop
294306

307+
[2.3.6]: https://github.com/brainelectronics/micropython-modbus/tree/2.3.6
295308
[2.3.5]: https://github.com/brainelectronics/micropython-modbus/tree/2.3.5
296309
[2.3.4]: https://github.com/brainelectronics/micropython-modbus/tree/2.3.4
297310
[2.3.3]: https://github.com/brainelectronics/micropython-modbus/tree/2.3.3

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@
3838
]
3939
],
4040
"deps": [],
41-
"version": "2.3.5"
41+
"version": "2.3.6"
4242
}

umodbus/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
22
# -*- coding: UTF-8 -*-
33

4-
__version_info__ = ("0", "0", "0")
4+
__version_info__ = ("2", "3", "6")
55
__version__ = '.'.join(__version_info__)

0 commit comments

Comments
 (0)