-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
23 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
## 0.2.0 | ||
|
||
Breaking changes: | ||
|
||
- Changed several functions to take RNG as `Arc<Mutex<R>>` instead of `&mut R`. This allows for these functions to be called concurrently. | ||
|
||
## 0.1.0 | ||
|
||
- Initial release |
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,14 @@ | ||
# Release to GitHub | ||
|
||
- Make sure all changes to be released are on `main` | ||
- Compare `main`'s commit history to the changelog to ensure all public API changes are included as well as notable internal changes | ||
- If necessary, PR and merge the changelog changes. | ||
- Run the [Bump Version](https://github.com/IronCoreLabs/ironcore-documents/actions/workflows/bump-version.yaml) workflow in this repo. | ||
- Give it a new release version. For example, if the current version is 1.2.3-pre.4, type in 1.2.3. | ||
|
||
# Release to crates.io | ||
|
||
- `git checkout <tag>` where `<tag>` is the GitHub tag created by the Bump Version workflow above. | ||
- `cargo package` to see if there are any issues | ||
- `cargo publish` | ||
- Check crates.io and docs.rs sites for new version |