Skip to content

Commit

Permalink
Add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
d-k-bo committed Jan 21, 2024
1 parent 0594b37 commit f7bd0e8
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# 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]

### Added

- `opusenc-sys` now uses the `links` manifest key

### Changed

- Update dependencies
- includes an update of the publicly exposed `num_enum` crate which could be considered a breaking change

## [0.1.0] - 2023-07-22

### Added

- Initial release

[Unreleased]: https://github.com/d-k-bo/opusenc-rs/compare/v0.1.0...HEAD
[0.1.0]: https://github.com/d-k-bo/opusenc-rs/releases/tag/v0.1.0
17 changes: 17 additions & 0 deletions release.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[[pre-release-replacements]]
file = "CHANGELOG.md"
search = "## \\[Unreleased\\]"
replace = """## [Unreleased]\n\n## [{{version}}] - {{date}}"""
exactly = 1

[[pre-release-replacements]]
file = "CHANGELOG.md"
search = "\\.\\.\\.HEAD"
replace = "...{{tag_name}}"
exactly = 1

[[pre-release-replacements]]
file = "CHANGELOG.md"
search = "\\[Unreleased\\]: "
replace = """[Unreleased]: https://github.com/d-k-bo/opusenc-rs/compare/{{tag_name}}...HEAD\n[{{version}}]: """
exactly = 1

0 comments on commit f7bd0e8

Please sign in to comment.