Skip to content

Commit

Permalink
docs: Support nested changelogs.
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Feb 3, 2024
1 parent 27683b9 commit 3f2d8e1
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions crates/download/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ publish = false
[lib]
crate-type = ['cdylib']

[package.metadata.release]
pre-release-replacements = [
{ file = "./CHANGELOG.md", search = "Unreleased", replace = "{{version}}" },
]

[dependencies]
moon_extension_common = { path = "../common" }
extism-pdk = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/migrate-turborepo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.0.1
## Unreleased

#### 🚀 Updates

Expand Down
7 changes: 6 additions & 1 deletion crates/migrate-turborepo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
[package]
name = "moon_migrate_turborepo_extension"
version = "0.0.1"
version = "0.0.0"
edition = "2021"
license = "MIT"
publish = false

[lib]
crate-type = ['cdylib']

[package.metadata.release]
pre-release-replacements = [
{ file = "./CHANGELOG.md", search = "Unreleased", replace = "{{version}}" },
]

[dependencies]
moon_extension_common = { path = "../common" }
extism-pdk = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/unpack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.1.0
## Unreleased

#### 🚀 Updates

Expand Down
7 changes: 6 additions & 1 deletion crates/unpack/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
[package]
name = "moon_unpack_extension"
version = "0.0.1"
version = "0.0.0"
edition = "2021"
license = "MIT"
publish = false

[lib]
crate-type = ['cdylib']

[package.metadata.release]
pre-release-replacements = [
{ file = "./CHANGELOG.md", search = "Unreleased", replace = "{{version}}" },
]

[dependencies]
moon_extension_common = { path = "../common" }
extism-pdk = { workspace = true }
Expand Down

0 comments on commit 3f2d8e1

Please sign in to comment.