-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds CHANGELOG.md
- Loading branch information
Showing
2 changed files
with
41 additions
and
1 deletion.
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,40 @@ | ||
# 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.1.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
Types of changes: | ||
|
||
- `Added` for new features. | ||
- `Changed` for changes in existing functionality. | ||
- `Deprecated` for soon-to-be removed features. | ||
- `Removed` for now removed features. | ||
- `Fixed` for any bug fixes. | ||
- `Security` in case of vulnerabilities. | ||
|
||
## [Unreleased] | ||
|
||
## [0.7.1] | ||
|
||
### Added | ||
|
||
- MSRV in Cargo.toml and rust-toolchain (#46) | ||
- CHANGELOG.md (#45) | ||
|
||
### Changed | ||
|
||
- Lowered MSRV back to 1.60 from 1.74 (#46) | ||
- Updated CI to support MSRV (#46) | ||
- Updated CI dependencies | ||
|
||
## [0.7.0] | ||
|
||
### Added | ||
|
||
- Implemented volume control on Linux (#42) | ||
|
||
### Changed | ||
|
||
- Refactored D-Bus module (#42) |
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 = "souvlaki" | ||
version = "0.7.0" | ||
version = "0.7.1" | ||
authors = ["Sinono3 <[email protected]>"] | ||
edition = "2018" | ||
description = "A cross-platform media key and metadata handling library." | ||
|