Skip to content

Commit

Permalink
Prep release (#30)
Browse files Browse the repository at this point in the history
* Setup cargo-release

* Manually cleanup CHANGELOG

* Update CHANGELOG
  • Loading branch information
Jake-Shadle committed May 23, 2022
1 parent 5e6f821 commit 85b9ea2
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 22 deletions.
46 changes: 24 additions & 22 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,34 +1,36 @@
<!-- markdownlint-disable blanks-around-headings blanks-around-lists no-duplicate-heading -->

# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.1] - 2019-09-03
<!-- next-header -->
## [Unreleased] - ReleaseDate
### Added
- New features go here in a bullet list

### Changed
- Changes to existing functionality go here in a bullet list

### Deprecated
- Mark features soon-to-be removed in a bullet list
- First usable release of `crash-context`, `crash-handler`, `sadness-generator`, and `minidumper` crates.

### Removed
- Features that have been removed in a bullet list

### Fixed
- Bug fixes in a bullet list
## [crash-handler-v0.1.0] - 2022-04-29
### Added
- Initial publish of crash-handler with Linux, Windows, and MacOS support

### Security
- Changes/fixes related to security vulnerabilities in a bullet list
## [sadness-generator-v0.1.0] - 2022-04-29
### Added
- Initial published of sadness-generator, can generated crashes on Linux, Windows, and MacOS

## [0.1.0] - 2019-09-02
## [crash-context-v0.2.0] - 2022-04-29
### Added
- Initial add of the thing
- Add Windows and MacOS support

[Unreleased]: https://github.com/EmbarkStudios/$REPO_NAME/compare/0.1.1...HEAD
[0.1.1]: https://github.com/EmbarkStudios/$REPO_NAME/compare/0.1.0...0.1.1
[0.1.0]: https://github.com/EmbarkStudios/$REPO_NAME/releases/tag/0.1.0
## [crash-context-v0.1.0] - 2022-04-21
### Added
- Initial pass of crash-context, Linux only

<!-- next-url -->
[Unreleased]: https://github.com/EmbarkStudios/crash-handling/compare/crash-handler-v0.1.0...HEAD
[crash-handler-v0.1.0]: https://github.com/EmbarkStudios/crash-handling/releases/tag/crash-handler-v0.1.0
[sadness-generator-v0.1.0]: https://github.com/EmbarkStudios/crash-handling/releases/tag/sadness-generator-v0.1.0
[crash-context-v0.2.0]: https://github.com/EmbarkStudios/crash-handling/releases/tag/crash-context-v0.2.0
[crash-context-v0.1.0]: https://github.com/EmbarkStudios/crash-handling/releases/tag/crash-context-v0.1.0
3 changes: 3 additions & 0 deletions minidumper-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,6 @@ minidumper = { path = "../minidumper" }
rayon = "1.5"
sadness-generator = { path = "../sadness-generator" }
tracing-subscriber = { version = "0.3" }

[package.metadata.release]
release = false
13 changes: 13 additions & 0 deletions release.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
pre-release-commit-message = "Release {{version}}"
tag-message = "Release {{version}}"
tag-name = "{{version}}"
shared-version = true
consolidate-commits = true
consolidate-pushes = true
pre-release-replacements = [
{ file = "CHANGELOG.md", search = "Unreleased", replace = "{{version}}" },
{ file = "CHANGELOG.md", search = "\\.\\.\\.HEAD", replace = "...{{tag_name}}" },
{ file = "CHANGELOG.md", search = "ReleaseDate", replace = "{{date}}" },
{ file = "CHANGELOG.md", search = "<!-- next-header -->", replace = "<!-- next-header -->\n## [Unreleased] - ReleaseDate" },
{ file = "CHANGELOG.md", search = "<!-- next-url -->", replace = "<!-- next-url -->\n[Unreleased]: https://github.com/rust-minidump/crash-handling/compare/{{tag_name}}...HEAD" },
]

0 comments on commit 85b9ea2

Please sign in to comment.