File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 1.5.0] - 2024-10-06
11+
1012### Added
1113
1214* 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
2729
2830### Fixed
2931
30- * [ #3 ] ( https://github.com/ofabel/mp-flipper/issues/3 ) : Proper ` CR ` and ` LF ` handling in the REPL:
32+ * [ #3 ] ( https://github.com/ofabel/mp-flipper/issues/3 ) : Proper ` CR ` and ` LF ` handling in the REPL.
3133
3234## [ 1.4.0] - 2024-09-29
3335
@@ -154,7 +156,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
154156* Basic build setup
155157* Minimal working example
156158
157- [ Unreleased ] : https://github.com/ofabel/mp-flipper/compare/v1.4.0...dev
159+ [ Unreleased ] : https://github.com/ofabel/mp-flipper/compare/v1.5.0...dev
160+ [ 1.5.0 ] : https://github.com/ofabel/mp-flipper/compare/v1.4.0...v1.5.0
158161[ 1.4.0 ] : https://github.com/ofabel/mp-flipper/compare/v1.3.0...v1.4.0
159162[ 1.3.0 ] : https://github.com/ofabel/mp-flipper/compare/v1.2.0...v1.3.0
160163[ 1.2.0 ] : https://github.com/ofabel/mp-flipper/compare/v1.1.0...v1.2.0
Original file line number Diff line number Diff line change 1+ ## 1.5
2+
3+ * Added ** io** module for basic file system operations.
4+ * Added ** logging** module to allow level based log messages.
5+ * Rework of the ** print** function: output redirection, based on script invocation.
6+ * Added UART support: connect, read and write.
7+ * Fixed the line feed handling in the REPL.
8+
19## 1.4
210
311* Added interactive Python shell (aka REPL) as a CLI command.
Original file line number Diff line number Diff line change @@ -452,6 +452,8 @@ Functions
452452I/O
453453---
454454
455+ Read and write files on the SD card.
456+
455457Constants
456458~~~~~~~~~
457459
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44
55[project ]
66name = " flipperzero"
7- version = " 1.3 .0"
7+ version = " 1.5 .0"
88authors = [
99 { name = " Oliver Fabel" },
1010]
You can’t perform that action at this time.
0 commit comments