Browse Source

bump version

Oliver Fabel 9 tháng trước cách đây
mục cha
commit
602080eca9
5 tập tin đã thay đổi với 16 bổ sung5 xóa
  1. 8 1
      CHANGELOG.md
  2. 1 1
      application.fam
  3. 4 0
      docs/CHANGELOG.md
  4. 2 2
      docs/pages/conf.py
  5. 1 1
      pyproject.toml

+ 8 - 1
CHANGELOG.md

@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 
 ## [Unreleased]
 ## [Unreleased]
 
 
+## [1.8.0]
+
+### Fixed
+
+* [#9](https://github.com/ofabel/mp-flipper/issues/9): Update to latest SDK version.
+
 ## [1.7.0]
 ## [1.7.0]
 
 
 ### Changed
 ### Changed
@@ -172,7 +178,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 * Basic build setup
 * Basic build setup
 * Minimal working example
 * Minimal working example
 
 
-[Unreleased]: https://github.com/ofabel/mp-flipper/compare/v1.7.0...dev
+[Unreleased]: https://github.com/ofabel/mp-flipper/compare/v1.8.0...dev
+[1.8.0]: https://github.com/ofabel/mp-flipper/compare/v1.7.0...v1.8.0
 [1.7.0]: https://github.com/ofabel/mp-flipper/compare/v1.6.0...v1.7.0
 [1.7.0]: https://github.com/ofabel/mp-flipper/compare/v1.6.0...v1.7.0
 [1.6.0]: https://github.com/ofabel/mp-flipper/compare/v1.5.0...v1.6.0
 [1.6.0]: https://github.com/ofabel/mp-flipper/compare/v1.5.0...v1.6.0
 [1.5.0]: https://github.com/ofabel/mp-flipper/compare/v1.4.0...v1.5.0
 [1.5.0]: https://github.com/ofabel/mp-flipper/compare/v1.4.0...v1.5.0

+ 1 - 1
application.fam

@@ -5,7 +5,7 @@ App(
     entry_point="upython",
     entry_point="upython",
     stack_size=4 * 1024,
     stack_size=4 * 1024,
     fap_category="Tools",
     fap_category="Tools",
-    fap_version="1.7",
+    fap_version="1.8",
     fap_description="Compile and execute MicroPython scripts",
     fap_description="Compile and execute MicroPython scripts",
     fap_icon="icon.png",
     fap_icon="icon.png",
     fap_icon_assets="images",
     fap_icon_assets="images",

+ 4 - 0
docs/CHANGELOG.md

@@ -1,3 +1,7 @@
+## 1.8
+
+* Update to latest SDK version.
+
 ## 1.7
 ## 1.7
 
 
 * Replaced speaker note constants with an attribute delegator function to save space.
 * Replaced speaker note constants with an attribute delegator function to save space.

+ 2 - 2
docs/pages/conf.py

@@ -33,8 +33,8 @@ now = datetime.datetime.now()
 project = 'uPython'
 project = 'uPython'
 copyright = str(now.year) + ', Oliver Fabel'
 copyright = str(now.year) + ', Oliver Fabel'
 author = 'Oliver Fabel'
 author = 'Oliver Fabel'
-release = '1.7.0'
-version = '1.7'
+release = '1.8.0'
+version = '1.8'
 language = 'en'
 language = 'en'
 
 
 extensions = [
 extensions = [

+ 1 - 1
pyproject.toml

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