Skip to content

Commit

Permalink
Version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dreadnought committed Dec 30, 2022
1 parent 5cce8d8 commit e1c5041
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

-

## [0.4.0] - 2022-12-30

### Added

- Add `set_soc` command (#35)

### Fixed

- Don't crash if the Pack Status response is empty
- Call serial.close() before exiting
- Correct error messages of Sinowealth BMS (resolves #34)

## [0.3.0] - 2021-10-25

### Added
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package-build:
python3 setup.py sdist bdist_wheel
twine check dist/*
twine check dist/*`python3 setup.py --version`*
package-upload:
twine upload dist/*
twine upload dist/*`python3 setup.py --version`*
package-commit:
git commit -m "Version `python3 setup.py --version`"
git tag "v`python3 setup.py --version`"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name="dalybms",
version="0.3.0",
version="0.4.0",
description="Client for Daly BMS",
long_description=README,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit e1c5041

Please sign in to comment.