mirror of
https://github.com/jhbruhn/moonboot.git
synced 2025-03-15 01:55:50 +00:00
Compare commits
6 commits
Author | SHA1 | Date | |
---|---|---|---|
efadc79b9e | |||
6f481303e0 | |||
7a470f6f7d | |||
69769ec9dc | |||
d8658cf436 | |||
c88d6bfdf7 |
5 changed files with 18 additions and 11 deletions
|
@ -2,10 +2,16 @@
|
||||||
|
|
||||||
## [Unreleased] - ReleaseDate
|
## [Unreleased] - ReleaseDate
|
||||||
|
|
||||||
|
## [0.1.2] - 2022-04-19
|
||||||
|
|
||||||
- Enable more features in build
|
- Enable more features in build
|
||||||
|
- Fix automatic releases
|
||||||
|
|
||||||
## [0.1.0]
|
## [0.1.0]
|
||||||
|
|
||||||
- Initial release!
|
- Initial release!
|
||||||
|
|
||||||
<!-- next-url -->
|
<!-- next-url -->
|
||||||
|
[Unreleased]: https://github.com/jhbruhn/moonboot/compare/v0.1.2...HEAD
|
||||||
|
[0.1.2]: https://github.com/jhbruhn/moonboot/compare/v0.1.0...v0.1.2
|
||||||
|
[0.1.0]: https://github.com/jhbruhn/moonboot/compare/v0.1.0...v1.1.0
|
||||||
|
|
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -223,7 +223,7 @@ checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "moonboot"
|
name = "moonboot"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cortex-m",
|
"cortex-m",
|
||||||
"crc",
|
"crc",
|
||||||
|
@ -239,14 +239,14 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "moonboot-codegen"
|
name = "moonboot-codegen"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"moonboot",
|
"moonboot",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "moonboot-macros"
|
name = "moonboot-macros"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro-error",
|
"proc-macro-error",
|
||||||
"quote 1.0.18",
|
"quote 1.0.18",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "moonboot"
|
name = "moonboot"
|
||||||
description = "OTA Bootloader Construction Framework for Rust no_std environments"
|
description = "OTA Bootloader Construction Framework for Rust no_std environments"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
authors = ["Jan-Henrik Bruhn <rust@jhbruhn.de>"]
|
authors = ["Jan-Henrik Bruhn <rust@jhbruhn.de>"]
|
||||||
|
@ -11,7 +11,7 @@ keywords = ["embedded", "no_std", "bootloader", "framework", "fota"]
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
moonboot-macros = { path = "./macros", version = "0.1.0" }
|
moonboot-macros = { path = "./macros", version = "0.1.2" }
|
||||||
heapless = {version = "0.7", features = ["serde"] }
|
heapless = {version = "0.7", features = ["serde"] }
|
||||||
serde = { version = "1.0", features = ["derive"], default-features = false, optional = true }
|
serde = { version = "1.0", features = ["derive"], default-features = false, optional = true }
|
||||||
cortex-m = { version = "0.7", optional = true }
|
cortex-m = { version = "0.7", optional = true }
|
||||||
|
@ -40,12 +40,13 @@ defmt-error = []
|
||||||
[package.metadata.release]
|
[package.metadata.release]
|
||||||
enable-features = ["ram-state", "ram-state", "cortex-m"]
|
enable-features = ["ram-state", "ram-state", "cortex-m"]
|
||||||
shared-version = true
|
shared-version = true
|
||||||
|
dependent-version = "upgrade"
|
||||||
pre-release-replacements = [
|
pre-release-replacements = [
|
||||||
{file="CHANGELOG.md", search="Unreleased", replace="{{version}}"},
|
{file="CHANGELOG.md", search="Unreleased", replace="{{version}}"},
|
||||||
{file="CHANGELOG.md", search="\\.\\.\\.HEAD", replace="...{{tag_name}}", exactly=1},
|
{file="CHANGELOG.md", search="\\.\\.\\.HEAD", replace="...{{tag_name}}", exactly=1},
|
||||||
{file="CHANGELOG.md", search="ReleaseDate", replace="{{date}}"},
|
{file="CHANGELOG.md", search="ReleaseDate", replace="{{date}}"},
|
||||||
{file="CHANGELOG.md", search="<!-- next-header -->", replace="<!-- next-header -->\n\n## [Unreleased] - ReleaseDate", exactly=1},
|
{file="CHANGELOG.md", search="<!-- next-header -->", replace="<!-- next-header -->\n\n## [Unreleased] - ReleaseDate", exactly=1},
|
||||||
{file="CHANGELOG.md", search="<!-- next-url -->", replace="<!-- next-url -->\n[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/{{tag_name}}...HEAD", exactly=1},
|
{file="CHANGELOG.md", search="<!-- next-url -->", replace="<!-- next-url -->\n[Unreleased]: https://github.com/jhbruhn/moonboot/compare/{{tag_name}}...HEAD", exactly=1},
|
||||||
]
|
]
|
||||||
|
|
||||||
[workspace.metadata.release]
|
[workspace.metadata.release]
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "moonboot-codegen"
|
name = "moonboot-codegen"
|
||||||
description = "Code generation helpers for moonboot bootloader framework"
|
description = "Code generation helpers for moonboot bootloader framework"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
authors = ["Jan-Henrik Bruhn <rust@jhbruhn.de>"]
|
authors = ["Jan-Henrik Bruhn <rust@jhbruhn.de>"]
|
||||||
|
@ -12,8 +12,8 @@ keywords = ["embedded", "no_std", "bootloader", "framework", "fota"]
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
moonboot = { path = "../", version = "0.1.1" }
|
moonboot = { path = "../", version = "0.1.2" }
|
||||||
|
|
||||||
[package.metadata.release]
|
[package.metadata.release]
|
||||||
tag = false
|
|
||||||
shared-version = true
|
shared-version = true
|
||||||
|
dependent-version = "upgrade"
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
description = "Macros for moonboot bootloader framework"
|
description = "Macros for moonboot bootloader framework"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
name = "moonboot-macros"
|
name = "moonboot-macros"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
authors = ["Jan-Henrik Bruhn <rust@jhbruhn.de>"]
|
authors = ["Jan-Henrik Bruhn <rust@jhbruhn.de>"]
|
||||||
repository = "https://github.com/jhbruhn/moonboot"
|
repository = "https://github.com/jhbruhn/moonboot"
|
||||||
|
@ -17,5 +17,5 @@ quote = "1.0"
|
||||||
syn = { version = "1.0", features = ["full"] }
|
syn = { version = "1.0", features = ["full"] }
|
||||||
|
|
||||||
[package.metadata.release]
|
[package.metadata.release]
|
||||||
tag = false
|
|
||||||
shared-version = true
|
shared-version = true
|
||||||
|
dependent-version = "upgrade"
|
||||||
|
|
Loading…
Reference in a new issue