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-ios.git
commit a34bbf788754593f02a6664935cb131159b94211 Author: Erisu <[email protected]> AuthorDate: Sun Sep 3 20:32:33 2023 +0900 release(ios-v7.0.1): updated version and RELEASENOTES.md --- CordovaLib/include/Cordova/CDVAvailability.h | 3 ++- RELEASENOTES.md | 7 +++++++ package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CordovaLib/include/Cordova/CDVAvailability.h b/CordovaLib/include/Cordova/CDVAvailability.h index c0fd9265..5f6d889f 100644 --- a/CordovaLib/include/Cordova/CDVAvailability.h +++ b/CordovaLib/include/Cordova/CDVAvailability.h @@ -80,6 +80,7 @@ #define __CORDOVA_6_2_0 60200 #define __CORDOVA_6_3_0 60300 #define __CORDOVA_7_0_0 70000 +#define __CORDOVA_7_0_1 70001 /* coho:next-version,insert-before */ #define __CORDOVA_NA 99999 /* not available */ @@ -92,7 +93,7 @@ */ #ifndef CORDOVA_VERSION_MIN_REQUIRED /* coho:next-version-min-required,replace-after */ - #define CORDOVA_VERSION_MIN_REQUIRED __CORDOVA_7_0_0 + #define CORDOVA_VERSION_MIN_REQUIRED __CORDOVA_7_0_1 #endif /* diff --git a/RELEASENOTES.md b/RELEASENOTES.md index e309c940..8401bda7 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -22,6 +22,13 @@ Cordova is a static library that enables developers to include the Cordova API in their iOS application projects easily, and also create new Cordova-based iOS application projects through the command-line. +### 7.0.1 (Sep 03, 2023) + +* [GH-1369](https://github.com/apache/cordova-ios/pull/1369) fix: `xcodebuild` version check to 11 +* [GH-1358](https://github.com/apache/cordova-ios/pull/1358) fix: ensure Xcode project file references use `path` +* [GH-1368](https://github.com/apache/cordova-ios/pull/1368) fix: make code compile on Xcode 11 +* [GH-1360](https://github.com/apache/cordova-ios/pull/1360) fix: add missing cordova versions to `CDVAvailability.h` + ### 7.0.0 (Jul 07, 2023) **Breaking:** diff --git a/package-lock.json b/package-lock.json index 87943abc..1ff5aaad 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "cordova-ios", - "version": "7.0.1-dev", + "version": "7.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "cordova-ios", - "version": "7.0.1-dev", + "version": "7.0.1", "license": "Apache-2.0", "dependencies": { "cordova-common": "^5.0.0", diff --git a/package.json b/package.json index b3e5934e..746bac8d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cordova-ios", - "version": "7.0.1-dev", + "version": "7.0.1", "description": "cordova-ios release", "types": "./types/index.d.ts", "main": "lib/Api.js", --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
