diff --git a/CHANGELOG.md b/CHANGELOG.md index b4bb75e..f95987d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ All notable changes to this project will be documented in this file. +## [7.0.1](https://github.com/capacitor-community/media/compare/v7.0.1...v7.0.0) (2024-12-17) +- Add media identifier to return value of `savePhoto()` and `saveVideo()` on iOS + ## [7.0.0](https://github.com/capacitor-community/media/compare/v7.0.0...v6.0.0) (2024-08-28) - Add duration to `getMedias()` videos - Permissions are no longer required on Android for non-gallery use (BREAKING) diff --git a/example/package-lock.json b/example/package-lock.json index 86805e9..ddff39f 100644 --- a/example/package-lock.json +++ b/example/package-lock.json @@ -57,7 +57,7 @@ }, "..": { "name": "@capacitor-community/media", - "version": "7.0.0", + "version": "7.0.1", "license": "MIT", "devDependencies": { "@capacitor/android": "^6.0.0", diff --git a/package-lock.json b/package-lock.json index cef1ad1..2c58027 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@capacitor-community/media", - "version": "7.0.0", + "version": "7.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@capacitor-community/media", - "version": "7.0.0", + "version": "7.0.1", "license": "MIT", "devDependencies": { "@capacitor/android": "^6.0.0", diff --git a/package.json b/package.json index 5cb2454..543e1ea 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@capacitor-community/media", - "version": "7.0.0", - "description": "Enable some media features for Capacitor such as create albums, save videos, gifs and more.", + "version": "7.0.1", + "description": "Capacitor plugin for saving and retrieving photos and videos, and managing photo albums.", "author": "Nisala Kalupahana", "license": "MIT", "main": "dist/plugin.cjs.js", @@ -18,7 +18,10 @@ "keywords": [ "capacitor", "plugin", - "native" + "native", + "photo", + "video", + "albums" ], "scripts": { "verify": "npm run verify:ios && npm run verify:android && npm run verify:web",