-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
release: bump changelogs/versions for new release + add release notes…
… template (#221) * feat(docs): add release template and include in release process docs * chore(versions): bump changelogs and versions for [email protected] * fix(docs): release notes template typo
- Loading branch information
1 parent
db72218
commit 57b1d03
Showing
13 changed files
with
61 additions
and
23 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
## Build information | ||
|
||
Built using `rustc <rust version> (<commit hash<date>)` | ||
|
||
## Upgrade Instructions | ||
|
||
If the agent configuration interface or DB schema has changed such that it is not backwards compatible, please enumerate instructions for upgrading agent (e.g. change environment variables, delete agent DB, etc). Otherwise, please explicitly document that the release is backwards compatible and no additional steps are required. | ||
|
||
## New Features | ||
|
||
Enumerate all features added to each crate, listing them for each crate separately. | ||
|
||
Example: | ||
|
||
- `nomad-core` | ||
- Features in `nomad-core`... | ||
- `nomad-base` | ||
- Features in `nomad-base`... | ||
|
||
## Fixes | ||
|
||
Enumerate all fixes/patches added to each crate, listing them for each crate separately. | ||
|
||
Example: | ||
|
||
- `nomad-core` | ||
- Fixes in `nomad-core`... | ||
- `nomad-base` | ||
- Fixes in `nomad-base`... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,16 @@ | |
|
||
### Unreleased | ||
|
||
- make *Settings::new async for optionally fetching config from a remote url | ||
### [email protected] | ||
|
||
- make \*Settings::new async for optionally fetching config from a remote url | ||
- add test for remote config fetch | ||
- add bootup-only tracing subscriber | ||
- add environment variable overrides for agent configuration | ||
- add tests for agent environment variable overrides | ||
- remove `enabled` flag from agents project-wide | ||
|
||
### 1.0.0 | ||
### agents@1.0.0 | ||
|
||
- bumps version for first release | ||
- adds a changelog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "kathy" | ||
version = "1.0.0" | ||
version = "1.1.0" | ||
authors = ["James Prestwich <[email protected]>", "Luke Tchang <[email protected]>"] | ||
edition = "2021" | ||
description = "Nomad kathy agent" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,9 @@ | |
|
||
### Unreleased | ||
|
||
- make *Settings::new async for optionally fetching config from a remote url | ||
### [email protected] | ||
|
||
- make \*Settings::new async for optionally fetching config from a remote url | ||
- add bootup-only tracing subscriber | ||
- bug: add check for empty intersection of specified and subsidized | ||
- refactor: processor now uses global AWS client when proof pushing is enabled | ||
|
@@ -13,7 +15,7 @@ | |
- add tests for agent environment variable overrides | ||
- remove `enabled` flag from agents project-wide | ||
|
||
### 1.0.0 | ||
### agents@1.0.0 | ||
|
||
- bumps version for first release | ||
- adds a changelog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "processor" | ||
version = "1.0.0" | ||
version = "1.1.0" | ||
authors = ["Luke Tchang <[email protected]>", "James Prestwich <[email protected]>"] | ||
edition = "2021" | ||
description = "Nomad processor agent" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,16 @@ | |
|
||
### Unreleased | ||
|
||
- make *Settings::new async for optionally fetching config from a remote url | ||
### [email protected] | ||
|
||
- make \*Settings::new async for optionally fetching config from a remote url | ||
- relayer checks replica updater addresses match, errors channel if otherwise | ||
- add bootup-only tracing subscriber | ||
- add environment variable overrides for agent configuration | ||
- add tests for agent environment variable overrides | ||
- remove `enabled` flag from agents project-wide | ||
|
||
### 1.0.0 | ||
### agents@1.0.0 | ||
|
||
- bumps version for first release | ||
- adds a changelog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "relayer" | ||
version = "1.0.0" | ||
version = "1.1.0" | ||
authors = ["Luke Tchang <[email protected]>", "James Prestwich <[email protected]>"] | ||
edition = "2021" | ||
description = "Nomad relayer agent" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,15 @@ | |
|
||
### Unreleased | ||
|
||
- make *Settings::new async for optionally fetching config from a remote url | ||
### [email protected] | ||
|
||
- make \*Settings::new async for optionally fetching config from a remote url | ||
- add bootup-only tracing subscriber | ||
- add environment variable overrides for agent configuration | ||
- add tests for agent environment variable overrides | ||
- remove `enabled` flag from agents project-wide | ||
|
||
### 1.0.0 | ||
### agents@1.0.0 | ||
|
||
- bumps version for first release | ||
- adds a changelog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "updater" | ||
version = "1.0.0" | ||
version = "1.1.0" | ||
authors = ["James Prestwich <[email protected]>", "Luke Tchang <[email protected]>"] | ||
edition = "2021" | ||
description = "Nomad updater agent" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,15 @@ | |
|
||
### Unreleased | ||
|
||
- make *Settings::new async for optionally fetching config from a remote url | ||
### [email protected] | ||
|
||
- make \*Settings::new async for optionally fetching config from a remote url | ||
- add bootup-only tracing subscriber | ||
- add environment variable overrides for agent configuration | ||
- add tests for agent environment variable overrides | ||
- remove `enabled` flag from agents project-wide | ||
|
||
### 1.0.0 | ||
### agents@1.0.0 | ||
|
||
- bumps version for first release | ||
- adds a changelog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "watcher" | ||
version = "1.0.0" | ||
version = "1.1.0" | ||
authors = ["Luke Tchang <[email protected]>", "James Prestwich <[email protected]>"] | ||
edition = "2021" | ||
description = "Nomad watcher agent" | ||
|