diff --git a/CHANGELOG.md b/CHANGELOG.md index 8144f25..8c55e79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [v6.0.1](https://github.com/capacitor-community/camera-preview/compare/v6.0.0...v6.0.1) (2024-12-17) + +### BREAKING CHANGES +- The minimal required Node version is now 18.0.0 + +### Features + +- [FEATURE] add feature to check or detect when camera has been started ([#357](https://github.com/capacitor-community/camera-preview/pull/357)), ([f958173](https://github.com/capacitor-community/camera-preview/commit/f95817359906657d005e47c21b98006829206a3f)), closes [#356](https://github.com/capacitor-community/camera-preview/issues/356) + +### Chores + +- chore: update dependencies and eslint fixes ([#358](https://github.com/capacitor-community/camera-preview/pull/358)), ([871b115](https://github.com/capacitor-community/camera-preview/commit/871b115652ed9ebc8f9849693d7d11c2bab04c3b)) + ## [v6.0.0](https://github.com/capacitor-community/camera-preview/compare/v5.0.0...v6.0.0) (2024-05-06) ### Chores diff --git a/package-lock.json b/package-lock.json index 9061c28..bff413a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@capacitor-community/camera-preview", - "version": "6.0.0", + "version": "6.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@capacitor-community/camera-preview", - "version": "6.0.0", + "version": "6.0.1", "license": "MIT", "devDependencies": { "@capacitor/android": "^6.2.0", @@ -26,6 +26,10 @@ "swiftlint": "^2.0.0", "typescript": "^4.3.2" }, + "engines": { + "node": ">=18.0.0", + "npm": ">=9.0.0" + }, "peerDependencies": { "@capacitor/core": "^6.0.0" } diff --git a/package.json b/package.json index ee35695..72c423b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@capacitor-community/camera-preview", - "version": "6.0.0", + "version": "6.0.1", "description": "Camera preview", "main": "dist/plugin.cjs.js", "module": "dist/esm/index.js",