Oliver Fabel 1 год назад
Родитель
Сommit
35f3246ffd
4 измененных файлов с 16 добавлено и 3 удалено
  1. 5 2
      CHANGELOG.md
  2. 8 0
      docs/CHANGELOG.md
  3. 2 0
      docs/pages/reference.rst
  4. 1 1
      pyproject.toml

+ 5 - 2
CHANGELOG.md

@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 ## [Unreleased]
 
+## [1.5.0] - 2024-10-06
+
 ### Added
 
 * Support for basic file system operations using the `io` module:
@@ -27,7 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 ### Fixed
 
-* [#3](https://github.com/ofabel/mp-flipper/issues/3): Proper `CR` and `LF` handling in the REPL:
+* [#3](https://github.com/ofabel/mp-flipper/issues/3): Proper `CR` and `LF` handling in the REPL.
 
 ## [1.4.0] - 2024-09-29
 
@@ -154,7 +156,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 * Basic build setup
 * Minimal working example
 
-[Unreleased]: https://github.com/ofabel/mp-flipper/compare/v1.4.0...dev
+[Unreleased]: https://github.com/ofabel/mp-flipper/compare/v1.5.0...dev
+[1.5.0]: https://github.com/ofabel/mp-flipper/compare/v1.4.0...v1.5.0
 [1.4.0]: https://github.com/ofabel/mp-flipper/compare/v1.3.0...v1.4.0
 [1.3.0]: https://github.com/ofabel/mp-flipper/compare/v1.2.0...v1.3.0
 [1.2.0]: https://github.com/ofabel/mp-flipper/compare/v1.1.0...v1.2.0

+ 8 - 0
docs/CHANGELOG.md

@@ -1,3 +1,11 @@
+## 1.5
+
+* Added **io** module for basic file system operations.
+* Added **logging** module to allow level based log messages.
+* Rework of the **print** function: output redirection, based on script invocation.
+* Added UART support: connect, read and write.
+* Fixed the line feed handling in the REPL.
+
 ## 1.4
 
 * Added interactive Python shell (aka REPL) as a CLI command.

+ 2 - 0
docs/pages/reference.rst

@@ -452,6 +452,8 @@ Functions
 I/O
 ---
 
+Read and write files on the SD card.
+
 Constants
 ~~~~~~~~~
 

+ 1 - 1
pyproject.toml

@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
 
 [project]
 name = "flipperzero"
-version = "1.3.0"
+version = "1.5.0"
 authors = [
     { name = "Oliver Fabel" },
 ]