This is an automated email from the ASF dual-hosted git repository.

erisu pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/cordova-plugin-media-capture.git

commit b3d61bb2cff9554d08389a4f8d53479d9fc51d76
Author: Erisu <er...@apache.org>
AuthorDate: Mon Aug 14 13:35:28 2023 +0900

    release(media-capture-v5.0.0): updated version and RELEASENOTES.md
---
 RELEASENOTES.md    | 32 ++++++++++++++++++++++++++++++++
 package-lock.json  |  4 ++--
 package.json       |  2 +-
 plugin.xml         |  2 +-
 tests/package.json |  2 +-
 tests/plugin.xml   |  2 +-
 6 files changed, 38 insertions(+), 6 deletions(-)

diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index 32fec50..353f7f2 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -20,6 +20,38 @@
 -->
 # Release Notes
 
+### 5.0.0 (Aug 14, 2023)
+
+**Breaking Changes:**
+
+* [GH-274](https://github.com/apache/cordova-plugin-media-capture/pull/274) 
feat(android)!: bump file & **Android** requirements
+* [GH-262](https://github.com/apache/cordova-plugin-media-capture/pull/262) 
feat(android)!: support API 33+ permissions
+
+**Features:**
+
+* [GH-214](https://github.com/apache/cordova-plugin-media-capture/pull/214) 
feat(ios): support capture '`quality`' param for videos
+* [GH-256](https://github.com/apache/cordova-plugin-media-capture/pull/256) 
feat(ios): improve `Localizable.strings` & add `FR`
+
+**Fixes:**
+
+* [GH-184](https://github.com/apache/cordova-plugin-media-capture/pull/184) 
fix(ios): UI issues with main thread and added alert for permission.
+* [GH-279](https://github.com/apache/cordova-plugin-media-capture/pull/279) 
fix(ios): UI sizing of the audio capture controller according to parent view 
size
+* [GH-278](https://github.com/apache/cordova-plugin-media-capture/pull/278) 
fix(ios): `CAPTURE_APPLICATION_BUSY` error when dismissing modal by swipe
+* [GH-197](https://github.com/apache/cordova-plugin-media-capture/pull/197) 
fix(ios): set type attribute for captured audio
+* [GH-232](https://github.com/apache/cordova-plugin-media-capture/pull/232) 
fix(android): prevent app crash caused by NPE on intent data or `mediaFile`
+* [GH-195](https://github.com/apache/cordova-plugin-media-capture/pull/195) 
fix(MediaFiles): return missing '`lastModified`' and '`end`' attributes
+* [GH-212](https://github.com/apache/cordova-plugin-media-capture/pull/212) 
fix: use single version in `cordovaDependencies`
+* [GH-269](https://github.com/apache/cordova-plugin-media-capture/pull/269) 
fix(ios): set category before creating `AVAudioRecorder`
+
+**Other Changes:**
+
+* [GH-276](https://github.com/apache/cordova-plugin-media-capture/pull/276) 
dep: bump `@cordova/eslint-config@^5.0.0` w/ lint fix & `package-lock` rebuild
+* [GH-270](https://github.com/apache/cordova-plugin-media-capture/pull/270) 
chore: Update `SUPPORT_QUESTION.md` template
+* [GH-252](https://github.com/apache/cordova-plugin-media-capture/pull/252) 
chore(npm): rebuilt `package-lock`
+* [GH-273](https://github.com/apache/cordova-plugin-media-capture/pull/273) 
ci: sync github action workflow w/ paramedic base configs
+* [GH-254](https://github.com/apache/cordova-plugin-media-capture/pull/254) 
ci: sync workflow with paramedic
+* [GH-251](https://github.com/apache/cordova-plugin-media-capture/pull/251) 
ci(android): update java requirement for `cordova-android@11`
+
 ### 4.0.0 (May 25, 2022)
 
 * [GH-238](https://github.com/apache/cordova-plugin-media-capture/pull/238) 
dep!: bump `cordova-plugin-file@^7.0.0`
diff --git a/package-lock.json b/package-lock.json
index 9a79c2c..23a7b96 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
 {
   "name": "cordova-plugin-media-capture",
-  "version": "5.0.0-dev",
+  "version": "5.0.0",
   "lockfileVersion": 2,
   "requires": true,
   "packages": {
     "": {
       "name": "cordova-plugin-media-capture",
-      "version": "5.0.0-dev",
+      "version": "5.0.0",
       "license": "Apache-2.0",
       "devDependencies": {
         "@cordova/eslint-config": "^5.0.0"
diff --git a/package.json b/package.json
index 3c41c60..4cdd370 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cordova-plugin-media-capture",
-  "version": "5.0.0-dev",
+  "version": "5.0.0",
   "description": "Cordova Media Capture Plugin",
   "types": "./types/index.d.ts",
   "cordova": {
diff --git a/plugin.xml b/plugin.xml
index 1455e80..7875b79 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -21,7 +21,7 @@
 <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0";
 xmlns:android="http://schemas.android.com/apk/res/android";
            id="cordova-plugin-media-capture"
-      version="5.0.0-dev">
+      version="5.0.0">
     <name>Capture</name>
 
     <description>Cordova Media Capture Plugin</description>
diff --git a/tests/package.json b/tests/package.json
index 6d2be71..2cb4786 100644
--- a/tests/package.json
+++ b/tests/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cordova-plugin-media-capture-tests",
-  "version": "5.0.0-dev",
+  "version": "5.0.0",
   "description": "",
   "cordova": {
     "id": "cordova-plugin-media-capture-tests",
diff --git a/tests/plugin.xml b/tests/plugin.xml
index e04b60d..602d9f7 100644
--- a/tests/plugin.xml
+++ b/tests/plugin.xml
@@ -22,7 +22,7 @@
     xmlns:android="http://schemas.android.com/apk/res/android";
     xmlns:rim="http://www.blackberry.com/ns/widgets";
     id="cordova-plugin-media-capture-tests"
-    version="5.0.0-dev">
+    version="5.0.0">
     <name>Cordova Media Capture Plugin Tests</name>
     <license>Apache 2.0</license>
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org

Reply via email to