From 707343c8505ce841d27dbc443ddcef906bf5a1c6 Mon Sep 17 00:00:00 2001 From: Maksim Shcherbo Date: Mon, 23 Dec 2024 00:59:31 +0000 Subject: [PATCH] chore(main): release 1.0.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 086e7e9..6eb384c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.4.0" + ".": "1.0.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index bca71a7..36ead50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ All notable changes to this project will be documented in this file. +## [1.0.0](https://github.com/screwyprof/favkit/compare/v0.4.0...v1.0.0) (2024-12-23) + + +### ⚠ BREAKING CHANGES + +* Desktop and Downloads are now handled as custom locations with full paths instead of special targets with ~ notation. + +### Features + +* simplify target handling to use full paths ([#12](https://github.com/screwyprof/favkit/issues/12)) ([ac0e996](https://github.com/screwyprof/favkit/commit/ac0e99656b22724001addacc687945ee2471ec7a)) + ## [0.4.0](https://github.com/screwyprof/favkit/compare/v0.3.0...v0.4.0) (2024-12-22) diff --git a/Cargo.lock b/Cargo.lock index f1d9efc..3d28d34 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -175,7 +175,7 @@ dependencies = [ [[package]] name = "favkit" -version = "0.4.0" +version = "1.0.0" dependencies = [ "cargo-llvm-cov", "core-foundation", diff --git a/Cargo.toml b/Cargo.toml index 19884a6..023b2c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "favkit" -version = "0.4.0" +version = "1.0.0" edition = "2024" description = "A tool to manage macOS Finder sidebar items" authors = ["Maksim Shcherbo "]