-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: include release cycle info in crate
For some reason the `sn_build_info` crate started to manifest an error that it couldn't find the `release-cycle-info` file. The solution was to embed the information in the crate. This is less than ideal, because it now needs to be updated in two places. However, we could have the other parts of the release process read the Rust file. We can do that later.
- Loading branch information
Showing
3 changed files
with
14 additions
and
47 deletions.
There are no files selected for viewing
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
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,4 @@ | ||
pub const RELEASE_YEAR: &str = "2024"; | ||
pub const RELEASE_MONTH: &str = "10"; | ||
pub const RELEASE_CYCLE: &str = "3"; | ||
pub const RELEASE_CYCLE_COUNTER: &str = "2"; |