From 5602fa62bf7f0e24d27353b2b93ebdfaea11466d Mon Sep 17 00:00:00 2001 From: indrajit-roy-sc Date: Wed, 9 Jul 2025 16:52:03 +0530 Subject: [PATCH 01/16] feat(release): add 'release:major:rc' script for prerelease management --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index ad07d795..1a1f3472 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,8 @@ "commit": "yarn cz", "release:minor": "standard-version --release-as minor", "release:patch": "standard-version --release-as patch", - "release:major": "standard-version --release-as major" + "release:major": "standard-version --release-as major", + "release:major:rc": "standard-version --release-as major --prerelease rc" }, "keywords": [ "react-native", From 4d6dd8d068bae6d213b08facd52c87ca5f322f83 Mon Sep 17 00:00:00 2001 From: indrajit-roy-sc Date: Wed, 9 Jul 2025 17:28:36 +0530 Subject: [PATCH 02/16] chore(deps): update 'SCGateway' and 'SCLoans' dependencies to version 5.0.0-rc.2 --- react-native-smallcase-gateway.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/react-native-smallcase-gateway.podspec b/react-native-smallcase-gateway.podspec index cb469644..a67088d0 100644 --- a/react-native-smallcase-gateway.podspec +++ b/react-native-smallcase-gateway.podspec @@ -33,6 +33,6 @@ Pod::Spec.new do |s| s.dependency "ReactCommon/turbomodule/core" end - s.dependency 'SCGateway', '4.3.0' - s.dependency 'SCLoans', '4.0.0' + s.dependency 'SCGateway', '5.0.0-rc.2' + s.dependency 'SCLoans', '5.0.0-rc.2' end From 16e1df685c01cc2dc0f07f82d96046a4b0c09c5c Mon Sep 17 00:00:00 2001 From: indrajit-roy-sc Date: Wed, 9 Jul 2025 17:28:54 +0530 Subject: [PATCH 03/16] chore(release): 6.0.0-rc.0 --- CHANGELOG.md | 7 +++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cc901be1..33711f5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [6.0.0-rc.0](https://github.com/smallcase/react-native-smallcase-gateway/compare/v5.1.0-rc.3...v6.0.0-rc.0) (2025-07-09) + + +### Features + +* **release:** add 'release:major:rc' script for prerelease management ([5602fa6](https://github.com/smallcase/react-native-smallcase-gateway/commit/5602fa62bf7f0e24d27353b2b93ebdfaea11466d)) + ## [5.1.0](https://github.com/smallcase/react-native-smallcase-gateway/compare/v5.1.0-rc.3...v5.1.0) (2025-07-07) ### [5.0.1](https://github.com/smallcase/react-native-smallcase-gateway/compare/v5.0.0...v5.0.1) (2025-05-05) diff --git a/package-lock.json b/package-lock.json index a56750b1..2122eda3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "react-native-smallcase-gateway", - "version": "5.1.0", + "version": "6.0.0-rc.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "react-native-smallcase-gateway", - "version": "5.1.0", + "version": "6.0.0-rc.0", "license": "MIT", "dependencies": { "standard-version": "^9.5.0" diff --git a/package.json b/package.json index 1a1f3472..dafdeda0 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "react-native-smallcase-gateway", "title": "React Native Smallcase Gateway", - "version": "5.1.0", + "version": "6.0.0-rc.0", "description": "smallcase gateway bindings for react native", "main": "src/index.js", "files": [ From b1019ff4f977565232780ad179aa17bd6bd15744 Mon Sep 17 00:00:00 2001 From: indrajit-roy-sc Date: Wed, 9 Jul 2025 18:24:18 +0530 Subject: [PATCH 04/16] chore(deps): update 'SCGateway' and 'SCLoans' dependencies to version 5.0.0-rc.3 --- react-native-smallcase-gateway.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/react-native-smallcase-gateway.podspec b/react-native-smallcase-gateway.podspec index a67088d0..29b535b4 100644 --- a/react-native-smallcase-gateway.podspec +++ b/react-native-smallcase-gateway.podspec @@ -33,6 +33,6 @@ Pod::Spec.new do |s| s.dependency "ReactCommon/turbomodule/core" end - s.dependency 'SCGateway', '5.0.0-rc.2' - s.dependency 'SCLoans', '5.0.0-rc.2' + s.dependency 'SCGateway', '5.0.0-rc.3' + s.dependency 'SCLoans', '5.0.0-rc.3' end From 3a44274a517dd8c1e963b40a2a95f64f8a4fbcac Mon Sep 17 00:00:00 2001 From: indrajit-roy-sc Date: Wed, 9 Jul 2025 18:24:28 +0530 Subject: [PATCH 05/16] chore(release): 6.0.0-rc.1 --- CHANGELOG.md | 2 ++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 33711f5f..34a6ef41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [6.0.0-rc.1](https://github.com/smallcase/react-native-smallcase-gateway/compare/v6.0.0-rc.0...v6.0.0-rc.1) (2025-07-09) + ## [6.0.0-rc.0](https://github.com/smallcase/react-native-smallcase-gateway/compare/v5.1.0-rc.3...v6.0.0-rc.0) (2025-07-09) diff --git a/package-lock.json b/package-lock.json index 2122eda3..4de63899 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "react-native-smallcase-gateway", - "version": "6.0.0-rc.0", + "version": "6.0.0-rc.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "react-native-smallcase-gateway", - "version": "6.0.0-rc.0", + "version": "6.0.0-rc.1", "license": "MIT", "dependencies": { "standard-version": "^9.5.0" diff --git a/package.json b/package.json index dafdeda0..5d99e0c8 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "react-native-smallcase-gateway", "title": "React Native Smallcase Gateway", - "version": "6.0.0-rc.0", + "version": "6.0.0-rc.1", "description": "smallcase gateway bindings for react native", "main": "src/index.js", "files": [ From ca750b0792452ed26539d52c2d00d3cb7299ec10 Mon Sep 17 00:00:00 2001 From: indrajit-roy-sc Date: Wed, 9 Jul 2025 18:24:36 +0530 Subject: [PATCH 06/16] chore(release): 6.0.0-rc.2 --- CHANGELOG.md | 2 ++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 34a6ef41..83cbd935 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [6.0.0-rc.2](https://github.com/smallcase/react-native-smallcase-gateway/compare/v6.0.0-rc.0...v6.0.0-rc.2) (2025-07-09) + ## [6.0.0-rc.1](https://github.com/smallcase/react-native-smallcase-gateway/compare/v6.0.0-rc.0...v6.0.0-rc.1) (2025-07-09) ## [6.0.0-rc.0](https://github.com/smallcase/react-native-smallcase-gateway/compare/v5.1.0-rc.3...v6.0.0-rc.0) (2025-07-09) diff --git a/package-lock.json b/package-lock.json index 4de63899..39f6b5fc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "react-native-smallcase-gateway", - "version": "6.0.0-rc.1", + "version": "6.0.0-rc.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "react-native-smallcase-gateway", - "version": "6.0.0-rc.1", + "version": "6.0.0-rc.2", "license": "MIT", "dependencies": { "standard-version": "^9.5.0" diff --git a/package.json b/package.json index 5d99e0c8..095ee9a2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "react-native-smallcase-gateway", "title": "React Native Smallcase Gateway", - "version": "6.0.0-rc.1", + "version": "6.0.0-rc.2", "description": "smallcase gateway bindings for react native", "main": "src/index.js", "files": [ From f1cba8bc530e6796d25e600f96f460a1b839015f Mon Sep 17 00:00:00 2001 From: indrajit-roy-sc Date: Wed, 9 Jul 2025 18:35:35 +0530 Subject: [PATCH 07/16] chore(deps): downgrade 'SCLoans' dependency to version 4.0.0 --- react-native-smallcase-gateway.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react-native-smallcase-gateway.podspec b/react-native-smallcase-gateway.podspec index 29b535b4..2b2c8ea0 100644 --- a/react-native-smallcase-gateway.podspec +++ b/react-native-smallcase-gateway.podspec @@ -34,5 +34,5 @@ Pod::Spec.new do |s| end s.dependency 'SCGateway', '5.0.0-rc.3' - s.dependency 'SCLoans', '5.0.0-rc.3' + s.dependency 'SCLoans', '4.0.0' end From 9d4c35759cac58ed91406b7642d6a0ef8787b9ff Mon Sep 17 00:00:00 2001 From: indrajit-roy-sc Date: Wed, 9 Jul 2025 18:36:06 +0530 Subject: [PATCH 08/16] chore(release): 6.0.0-rc.3 --- CHANGELOG.md | 2 ++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 83cbd935..1e20c210 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [6.0.0-rc.3](https://github.com/smallcase/react-native-smallcase-gateway/compare/v6.0.0-rc.2...v6.0.0-rc.3) (2025-07-09) + ## [6.0.0-rc.2](https://github.com/smallcase/react-native-smallcase-gateway/compare/v6.0.0-rc.0...v6.0.0-rc.2) (2025-07-09) ## [6.0.0-rc.1](https://github.com/smallcase/react-native-smallcase-gateway/compare/v6.0.0-rc.0...v6.0.0-rc.1) (2025-07-09) diff --git a/package-lock.json b/package-lock.json index 39f6b5fc..8a3dbabb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "react-native-smallcase-gateway", - "version": "6.0.0-rc.2", + "version": "6.0.0-rc.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "react-native-smallcase-gateway", - "version": "6.0.0-rc.2", + "version": "6.0.0-rc.3", "license": "MIT", "dependencies": { "standard-version": "^9.5.0" diff --git a/package.json b/package.json index 095ee9a2..dd20662e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "react-native-smallcase-gateway", "title": "React Native Smallcase Gateway", - "version": "6.0.0-rc.2", + "version": "6.0.0-rc.3", "description": "smallcase gateway bindings for react native", "main": "src/index.js", "files": [ From 6c925ffb9939e6adf72564efcc5c4776ee992e4b Mon Sep 17 00:00:00 2001 From: indrajit-roy-sc Date: Wed, 9 Jul 2025 20:36:12 +0530 Subject: [PATCH 09/16] chore(deps): update to 'SCGateway-ios-17-crash' version '5.0.0-393-debug-rc.3' --- react-native-smallcase-gateway.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react-native-smallcase-gateway.podspec b/react-native-smallcase-gateway.podspec index 2b2c8ea0..a6576b20 100644 --- a/react-native-smallcase-gateway.podspec +++ b/react-native-smallcase-gateway.podspec @@ -33,6 +33,6 @@ Pod::Spec.new do |s| s.dependency "ReactCommon/turbomodule/core" end - s.dependency 'SCGateway', '5.0.0-rc.3' + s.dependency 'SCGateway-ios-17-crash', '5.0.0-393-debug-rc.3' s.dependency 'SCLoans', '4.0.0' end From 2dfb778dae4a58b39ba081812e1484c8a8e732eb Mon Sep 17 00:00:00 2001 From: indrajit-roy-sc Date: Wed, 9 Jul 2025 21:43:48 +0530 Subject: [PATCH 10/16] chore(deps): update 'SCGateway-ios-17-crash' to '5.0.0-394-release-rc.3' --- react-native-smallcase-gateway.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react-native-smallcase-gateway.podspec b/react-native-smallcase-gateway.podspec index a6576b20..e0a54dc7 100644 --- a/react-native-smallcase-gateway.podspec +++ b/react-native-smallcase-gateway.podspec @@ -33,6 +33,6 @@ Pod::Spec.new do |s| s.dependency "ReactCommon/turbomodule/core" end - s.dependency 'SCGateway-ios-17-crash', '5.0.0-393-debug-rc.3' + s.dependency 'SCGateway-ios-17-crash', '5.0.0-394-release-rc.3' s.dependency 'SCLoans', '4.0.0' end From 60cdcf2c906f656ff8b398ba7cd06bd1a5cba491 Mon Sep 17 00:00:00 2001 From: indrajit-roy-sc Date: Wed, 9 Jul 2025 21:57:45 +0530 Subject: [PATCH 11/16] chore(release): 6.0.0-rc.4 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8a3dbabb..d1c2fc17 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "react-native-smallcase-gateway", - "version": "6.0.0-rc.3", + "version": "6.0.0-rc.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "react-native-smallcase-gateway", - "version": "6.0.0-rc.3", + "version": "6.0.0-rc.4", "license": "MIT", "dependencies": { "standard-version": "^9.5.0" diff --git a/package.json b/package.json index dd20662e..c4bedba8 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "react-native-smallcase-gateway", "title": "React Native Smallcase Gateway", - "version": "6.0.0-rc.3", + "version": "6.0.0-rc.4", "description": "smallcase gateway bindings for react native", "main": "src/index.js", "files": [ From d5970e4939b4d34829fa3933d5953ef48b8454ef Mon Sep 17 00:00:00 2001 From: indrajit-roy-sc Date: Wed, 9 Jul 2025 21:57:55 +0530 Subject: [PATCH 12/16] chore(release): 6.0.0-rc.5 --- CHANGELOG.md | 2 ++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e20c210..cf024deb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [6.0.0-rc.5](https://github.com/smallcase/react-native-smallcase-gateway/compare/v6.0.0-rc.4...v6.0.0-rc.5) (2025-07-09) + ## [6.0.0-rc.3](https://github.com/smallcase/react-native-smallcase-gateway/compare/v6.0.0-rc.2...v6.0.0-rc.3) (2025-07-09) ## [6.0.0-rc.2](https://github.com/smallcase/react-native-smallcase-gateway/compare/v6.0.0-rc.0...v6.0.0-rc.2) (2025-07-09) diff --git a/package-lock.json b/package-lock.json index d1c2fc17..2a45b21b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "react-native-smallcase-gateway", - "version": "6.0.0-rc.4", + "version": "6.0.0-rc.5", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "react-native-smallcase-gateway", - "version": "6.0.0-rc.4", + "version": "6.0.0-rc.5", "license": "MIT", "dependencies": { "standard-version": "^9.5.0" diff --git a/package.json b/package.json index c4bedba8..e708d043 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "react-native-smallcase-gateway", "title": "React Native Smallcase Gateway", - "version": "6.0.0-rc.4", + "version": "6.0.0-rc.5", "description": "smallcase gateway bindings for react native", "main": "src/index.js", "files": [ From 8e49e07fedfc936ba06c0bfae2c77b61e9d79c1f Mon Sep 17 00:00:00 2001 From: indrajit-roy-sc Date: Wed, 9 Jul 2025 22:56:23 +0530 Subject: [PATCH 13/16] chore(deps): update 'SCGateway-ios-17-crash' to '5.0.0-395-release-rc.3' --- react-native-smallcase-gateway.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react-native-smallcase-gateway.podspec b/react-native-smallcase-gateway.podspec index e0a54dc7..4c2021b0 100644 --- a/react-native-smallcase-gateway.podspec +++ b/react-native-smallcase-gateway.podspec @@ -33,6 +33,6 @@ Pod::Spec.new do |s| s.dependency "ReactCommon/turbomodule/core" end - s.dependency 'SCGateway-ios-17-crash', '5.0.0-394-release-rc.3' + s.dependency 'SCGateway-ios-17-crash', '5.0.0-395-release-rc.3' s.dependency 'SCLoans', '4.0.0' end From bb6e9a23f7abac0d9c1e1fa52ffbea3a85860798 Mon Sep 17 00:00:00 2001 From: indrajit-roy-sc Date: Wed, 9 Jul 2025 23:02:23 +0530 Subject: [PATCH 14/16] chore(release): 6.0.0-rc.6 --- CHANGELOG.md | 2 ++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cf024deb..39d1bbef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [6.0.0-rc.6](https://github.com/smallcase/react-native-smallcase-gateway/compare/v6.0.0-rc.5...v6.0.0-rc.6) (2025-07-09) + ## [6.0.0-rc.5](https://github.com/smallcase/react-native-smallcase-gateway/compare/v6.0.0-rc.4...v6.0.0-rc.5) (2025-07-09) ## [6.0.0-rc.3](https://github.com/smallcase/react-native-smallcase-gateway/compare/v6.0.0-rc.2...v6.0.0-rc.3) (2025-07-09) diff --git a/package-lock.json b/package-lock.json index 2a45b21b..638af6a9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "react-native-smallcase-gateway", - "version": "6.0.0-rc.5", + "version": "6.0.0-rc.6", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "react-native-smallcase-gateway", - "version": "6.0.0-rc.5", + "version": "6.0.0-rc.6", "license": "MIT", "dependencies": { "standard-version": "^9.5.0" diff --git a/package.json b/package.json index e708d043..f9f63ad5 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "react-native-smallcase-gateway", "title": "React Native Smallcase Gateway", - "version": "6.0.0-rc.5", + "version": "6.0.0-rc.6", "description": "smallcase gateway bindings for react native", "main": "src/index.js", "files": [ From 19bf0f660756d367f7d1ed999d42452858f14829 Mon Sep 17 00:00:00 2001 From: indrajit-roy-sc Date: Thu, 10 Jul 2025 00:06:04 +0530 Subject: [PATCH 15/16] chore(deps): update 'SCGateway' and 'SCLoans' dependencies to '5.0.0-rc.4' --- react-native-smallcase-gateway.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/react-native-smallcase-gateway.podspec b/react-native-smallcase-gateway.podspec index 4c2021b0..7385b36a 100644 --- a/react-native-smallcase-gateway.podspec +++ b/react-native-smallcase-gateway.podspec @@ -33,6 +33,6 @@ Pod::Spec.new do |s| s.dependency "ReactCommon/turbomodule/core" end - s.dependency 'SCGateway-ios-17-crash', '5.0.0-395-release-rc.3' - s.dependency 'SCLoans', '4.0.0' + s.dependency 'SCGateway', '5.0.0-rc.4' + s.dependency 'SCLoans', '5.0.0-rc.4' end From 8d96ecd496f8f0442a6a672a4cf4e402d4054f92 Mon Sep 17 00:00:00 2001 From: indrajit-roy-sc Date: Thu, 10 Jul 2025 00:06:38 +0530 Subject: [PATCH 16/16] chore(release): 6.0.0-rc.7 --- CHANGELOG.md | 2 ++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 39d1bbef..630f21fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [6.0.0-rc.7](https://github.com/smallcase/react-native-smallcase-gateway/compare/v6.0.0-rc.6...v6.0.0-rc.7) (2025-07-09) + ## [6.0.0-rc.6](https://github.com/smallcase/react-native-smallcase-gateway/compare/v6.0.0-rc.5...v6.0.0-rc.6) (2025-07-09) ## [6.0.0-rc.5](https://github.com/smallcase/react-native-smallcase-gateway/compare/v6.0.0-rc.4...v6.0.0-rc.5) (2025-07-09) diff --git a/package-lock.json b/package-lock.json index 638af6a9..0462e150 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "react-native-smallcase-gateway", - "version": "6.0.0-rc.6", + "version": "6.0.0-rc.7", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "react-native-smallcase-gateway", - "version": "6.0.0-rc.6", + "version": "6.0.0-rc.7", "license": "MIT", "dependencies": { "standard-version": "^9.5.0" diff --git a/package.json b/package.json index f9f63ad5..8427e137 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "react-native-smallcase-gateway", "title": "React Native Smallcase Gateway", - "version": "6.0.0-rc.6", + "version": "6.0.0-rc.7", "description": "smallcase gateway bindings for react native", "main": "src/index.js", "files": [