From 8a82de011942c706da63bdbddd50166934bcfdd8 Mon Sep 17 00:00:00 2001 From: Roderick van Domburg Date: Sat, 23 Nov 2024 00:53:09 +0100 Subject: [PATCH] chore: prepare for v0.2.0 release --- CHANGELOG.md | 10 +++------- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 43c0f56..6cae909 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ 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) and [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/). -## [Unreleased] +## [0.2.0] - 2024-11-23 ### Added - [main] Support for configuring all command-line options via environment variables with `PLEEZER_` prefix @@ -20,17 +20,13 @@ and [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/). - [player] Optimized track skipping using `HashSet` for better performance - [track] Get the media URL programmatically instead of hardcoding it -### Deprecated - -### Removed - ### Fixed - [protocol] Correctly handle `connect` messages missing the `offer_id` field ### Security - [arl] Prevent ARL token exposure in debug logs -## [0.1.0] - 2024-02-20 +## [0.1.0] - 2024-11-20 Initial release of pleezer, a headless streaming player for the Deezer Connect protocol. @@ -46,5 +42,5 @@ Initial release of pleezer, a headless streaming player for the Deezer Connect p - Debug and trace logging capabilities - Command-line interface with various configuration options -[Unreleased]: https://github.com/roderickvd/pleezer/compare/v0.1.0...HEAD +[0.2.0]: https://github.com/roderickvd/pleezer/releases/tag/v0.2.0 [0.1.0]: https://github.com/roderickvd/pleezer/releases/tag/v0.1.0 diff --git a/Cargo.lock b/Cargo.lock index a9ccde2..a6ecfb7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1633,7 +1633,7 @@ checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" [[package]] name = "pleezer" -version = "0.1.0" +version = "0.2.0" dependencies = [ "base64", "blowfish", diff --git a/Cargo.toml b/Cargo.toml index 4937dae..b00aa3a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pleezer" -version = "0.1.0" +version = "0.2.0" authors = ["Roderick van Domburg"] description = "Headless Deezer Connect player" edition = "2021"