mirror of
https://github.com/jhbruhn/moonboot.git
synced 2025-03-14 17:45:50 +00:00
Fix version specifications
This commit is contained in:
parent
8e8e7e3d9c
commit
b8a2553d94
3 changed files with 5 additions and 2 deletions
|
@ -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
|
||||
|
||||
[dependencies]
|
||||
moonboot-macros = { path = "./macros" }
|
||||
moonboot-macros = { path = "./macros", version = "0.1.0" }
|
||||
heapless = {version = "0.7", features = ["serde"] }
|
||||
serde = { version = "1.0", features = ["derive"], default-features = false, optional = true }
|
||||
cortex-m = { version = "0.7", optional = true }
|
||||
|
@ -38,6 +38,7 @@ defmt-warn = []
|
|||
defmt-error = []
|
||||
|
||||
[package.metadata.release]
|
||||
shared-version = true
|
||||
pre-release-replacements = [
|
||||
{file="CHANGELOG.md", search="Unreleased", replace="{{version}}"},
|
||||
{file="CHANGELOG.md", search="\\.\\.\\.HEAD", replace="...{{tag_name}}", exactly=1},
|
||||
|
|
|
@ -12,7 +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
|
||||
|
||||
[dependencies]
|
||||
moonboot = { path = "../" }
|
||||
moonboot = { path = "../", version = "0.1.0" }
|
||||
|
||||
[package.metadata.release]
|
||||
tag = false
|
||||
shared-version = true
|
||||
|
|
|
@ -18,3 +18,4 @@ syn = { version = "1.0", features = ["full"] }
|
|||
|
||||
[package.metadata.release]
|
||||
tag = false
|
||||
shared-version = true
|
||||
|
|
Loading…
Reference in a new issue