diff --git a/CHANGELOG.md b/CHANGELOG.md
index cfd311f..4a58487 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,22 @@ All notable changes to Copy are 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).
+## [0.1.7] - 2026-09-11
+
+The keyboard shortcuts you already expect, image files that look like images, and a quieter close.
+
+### Added
+
+- ⌘C copies the selected cards to the clipboard and ⌘V pastes them, while a bare ⌫ deletes the selected card. All three act on your whole selection, the way ⌘⌫ already did. The two clipboard shortcuts step aside whenever there is text in the search box, so you can still paste a search term in and copy one back out.
+- A card holding an image file previews as the picture when you press Space, instead of a generic document icon. The Image filter in search finds those cards now too, not only pictures you copied directly.
+- An optional sound when Copy records something new, under Settings, General. It is off unless you turn it on, and you can pick any of the sounds macOS already ships.
+
+### Fixed
+
+- Closing the shelf on macOS 26 no longer flashes for a frame. The app underneath gets focus back after the shelf is fully gone, so a paste lands where you meant it to.
+- Card timestamps no longer get cut short. The source app name gives way instead.
+- ⌘, opens Settings. It used to open an empty window.
+
## [0.1.6] - 2026-08-15
Favorites hold their place while you scroll back through history.
diff --git a/Copy/Info.plist b/Copy/Info.plist
index b0d9978..b82fb7f 100644
--- a/Copy/Info.plist
+++ b/Copy/Info.plist
@@ -17,9 +17,9 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 0.1.6
+ 0.1.7
CFBundleVersion
- 7
+ 8
LSMinimumSystemVersion
14.0
LSUIElement
diff --git a/project.yml b/project.yml
index ad2f770..4be5773 100644
--- a/project.yml
+++ b/project.yml
@@ -30,8 +30,8 @@ targets:
path: Copy/Info.plist
properties:
CFBundleDisplayName: Copy
- CFBundleShortVersionString: "0.1.6"
- CFBundleVersion: "7"
+ CFBundleShortVersionString: "0.1.7"
+ CFBundleVersion: "8"
LSUIElement: true
LSMinimumSystemVersion: "14.0"
NSHumanReadableCopyright: "© 2026 Tarik Caramanico - GPL-3.0"
@@ -53,7 +53,7 @@ targets:
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.tarikbc.Copy
- MARKETING_VERSION: "0.1.6"
+ MARKETING_VERSION: "0.1.7"
SWIFT_VERSION: "5.0"
ENABLE_HARDENED_RUNTIME: YES
CODE_SIGN_STYLE: Automatic