Skip to content

Commit

Permalink
updated changelog and version
Browse files Browse the repository at this point in the history
  • Loading branch information
Rik Starmans committed May 30, 2024
1 parent 0606fdc commit 36a8807
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Removed
### Fixed
-->
## [0.5.3] - 2024-05-30
### Fixed
- fixed string formatting for compatibility with micropython
## [0.5.2] - 2023-11-15
### Fixed
- await function no longer caught in loop and has timeout of 2 seconds
Expand Down
4 changes: 2 additions & 2 deletions winbond/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
# -*- coding: UTF-8 -*-

__version_info__ = ("0", "5", "2")
__version__ = '.'.join(__version_info__)
__version_info__ = ("0", "5", "3")
__version__ = ".".join(__version_info__)

0 comments on commit 36a8807

Please sign in to comment.