diff --git a/.changeset/five-taxis-itch.md b/.changeset/five-taxis-itch.md deleted file mode 100644 index 13a90a4..0000000 --- a/.changeset/five-taxis-itch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"clippr": patch ---- - -Fixed the content not selectable. diff --git a/.changeset/yellow-cycles-obey.md b/.changeset/yellow-cycles-obey.md deleted file mode 100644 index 372b8a7..0000000 --- a/.changeset/yellow-cycles-obey.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"clippr": patch ---- - -Fix not being able to copy text to clipboard. diff --git a/CHANGELOG.md b/CHANGELOG.md index 487f8a8..a6a10f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.6.3 + +### Patch Changes + +- [#68](https://github.com/taroj1205/tauri-clipboard-manager/pull/68) [`d275bbf`](https://github.com/taroj1205/tauri-clipboard-manager/commit/d275bbfaad1a95619a5561ab1e259c684fda60af) Thanks [@taroj1205](https://github.com/taroj1205)! - Fixed the content not selectable. + +- [#63](https://github.com/taroj1205/tauri-clipboard-manager/pull/63) [`834bd97`](https://github.com/taroj1205/tauri-clipboard-manager/commit/834bd97f6b49c86096c858042a7874d7cd928c69) Thanks [@taroj1205](https://github.com/taroj1205)! - Fix not being able to copy text to clipboard. + ## Latest Release ### November 18, 2024: [v1.6.2](/.changelog/1.6.2.mdx) diff --git a/package.json b/package.json index de32e86..1d80761 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "clippr", "private": true, - "version": "1.6.2", + "version": "1.6.3", "description": "", "type": "module", "scripts": { diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 0785112..f1ad29b 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "Clippr" -version = "1.6.2" +version = "1.6.3" description = "Advanced clipboard manager built with Tauri" authors = [ "Shintaro Jokagi" ] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index df8fd37..81ca9fc 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "Clippr", - "version": "1.6.2", + "version": "1.6.3", "identifier": "com.clippr.app", "build": { "beforeDevCommand": "pnpm dev",