diff --git a/package.json b/package.json index f6a0d431c6..25b76dffb3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@shoutem/platform", - "version": "3.0.1", + "version": "3.0.2-rc.0", "scripts": { "android": "react-native run-android", "build": "node scripts/build", diff --git a/package.template.json b/package.template.json index f6a0d431c6..25b76dffb3 100644 --- a/package.template.json +++ b/package.template.json @@ -1,6 +1,6 @@ { "name": "@shoutem/platform", - "version": "3.0.1", + "version": "3.0.2-rc.0", "scripts": { "android": "react-native run-android", "build": "node scripts/build", diff --git a/platform/platform.json b/platform/platform.json index 27ec325272..037788c12c 100644 --- a/platform/platform.json +++ b/platform/platform.json @@ -1,7 +1,7 @@ { - "version": "3.0.1", - "mobileAppVersion": "3.0.1", - "releaseNotes": "* Fixed Android 11 issue with Phone and Email contact buttons\n* Fixed search field UI issues", + "version": "3.0.2-rc.0", + "mobileAppVersion": "3.0.2-rc.0", + "releaseNotes": "* Fixed paused Podcast/Radio resuming after audio interruption\n* For devs: Fixed production build info helper script", "settings": { "DEV-appetizeKey": "tmbt6dp2z7dafedwuc3z2b586r", "QA-appetizeKey": "mu8a6zv0xptggaezkyzr9v141r", @@ -23,11 +23,11 @@ "dependencies": { "shoutem.about": "~3.0.1", "shoutem.analytics": "~3.0.0", - "shoutem.application": "~3.0.0", - "shoutem.audio": "~3.0.0", - "shoutem.auth": "~3.0.0", + "shoutem.application": "~3.1.0-rc.0", + "shoutem.audio": "~3.0.1-rc.3", + "shoutem.auth": "~3.0.1", "shoutem.camera": "~3.0.0", - "shoutem.cms": "~3.0.0", + "shoutem.cms": "~3.1.0", "shoutem.code-push": "~3.0.0", "shoutem.deals": "~3.0.0", "shoutem.events": "~3.0.1", @@ -37,10 +37,10 @@ "shoutem.i18n": "~3.0.0", "shoutem.ical-events": "~3.0.0", "shoutem.layouts": "~3.0.0", - "shoutem.loyalty": "~3.0.3", - "shoutem.navigation": "~3.0.6", - "shoutem.news": "~3.1.0", - "shoutem.notification-center": "~3.0.0", + "shoutem.loyalty": "~3.0.5", + "shoutem.navigation": "~3.1.0-rc.1", + "shoutem.news": "~3.2.1", + "shoutem.notification-center": "~3.0.1", "shoutem.page": "~3.0.3", "shoutem.people": "~3.0.2", "shoutem.permissions": "~3.0.0", @@ -56,10 +56,10 @@ "shoutem.rss-news": "~3.0.1", "shoutem.rss-photos": "~3.0.0", "shoutem.rss-videos": "~3.0.0", - "shoutem.rubicon-theme": "~3.0.4", - "shoutem.social": "~3.1.1", + "shoutem.rubicon-theme": "~3.0.5", + "shoutem.social": "~3.1.2", "shoutem.sub-navigation": "~3.0.0", - "shoutem.theme": "~3.0.1", + "shoutem.theme": "~3.0.2", "shoutem.video": "~3.0.0", "shoutem.vimeo": "~3.0.0", "shoutem.web-view": "~3.0.0", diff --git a/scripts/helpers/get-production-build-info.js b/scripts/helpers/get-production-build-info.js index cbf92a438a..659f6d15f0 100644 --- a/scripts/helpers/get-production-build-info.js +++ b/scripts/helpers/get-production-build-info.js @@ -23,10 +23,14 @@ async function getProductionBuildInfo(buildConfig, platform) { try { const body = await request.get(requestOptions); const parsedBody = JSON.parse(body); - const productionBuild = _.find( - parsedBody.data, - build => build.attributes.devicePlatform === platform, - ); + const productionBuild = _.find(parsedBody.data, build => { + if ( + build.attributes.devicePlatform === platform && + build.attributes.buildType === 'production' + ) { + return build; + } + }); return productionBuild; } catch (error) {