Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions example/capacitor/ios/App/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- AuthgearCapacitor (2.14.0):
- AuthgearCapacitor (2.15.0):
- Capacitor
- Capacitor (7.0.1):
- CapacitorCordova
Expand Down Expand Up @@ -39,7 +39,7 @@ EXTERNAL SOURCES:
:path: "../../node_modules/@capacitor/status-bar"

SPEC CHECKSUMS:
AuthgearCapacitor: 60081b1c7ca8cf1395d67f4159536302da238a9d
AuthgearCapacitor: d8d5588f3b5ca9969d2843a23a3361fcca9a6099
Capacitor: de199cba6c8b20995428ad0b7cb0bc6ca625ffd4
CapacitorApp: 9cb31064a6c6bb2b1438583733a7bf45557fc1da
CapacitorCordova: 63d476958d5022d76f197031e8b7ea3519988c64
Expand Down
8 changes: 4 additions & 4 deletions example/capacitor/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions example/reactnative/ios/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- authgear-react-native (2.13.0):
- authgear-react-native (2.15.0):
- React-Core
- boost (1.84.0)
- DoubleConversion (1.1.6)
Expand Down Expand Up @@ -1721,7 +1721,7 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/ReactCommon/yoga"

SPEC CHECKSUMS:
authgear-react-native: 747eed466e7b9384f5beeacb22495c6b5fbaef11
authgear-react-native: cfd45b210c8bd32f4a540a0f10197e6b31b66000
boost: 1dca942403ed9342f98334bf4c3621f011aa7946
DoubleConversion: f16ae600a246532c4020132d54af21d0ddb2a385
FBLazyVector: be509404b5de73a64a74284edcaf73a5d1e128b1
Expand Down Expand Up @@ -1790,4 +1790,4 @@ SPEC CHECKSUMS:

PODFILE CHECKSUM: fb492fbad90606e1de36c6717b2aa697a1e9a04d

COCOAPODS: 1.16.2
COCOAPODS: 1.15.2
4 changes: 2 additions & 2 deletions example/reactweb/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/authgear-capacitor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@authgear/capacitor",
"version": "2.14.0",
"version": "2.15.0",
"license": "Apache-2.0",
"main": "dist/plugin.cjs.js",
"module": "dist/plugin.module.js",
Expand All @@ -14,7 +14,7 @@
"AuthgearCapacitor.podspec"
],
"devDependencies": {
"@authgear/core": "2.14.0",
"@authgear/core": "2.15.0",
"@capacitor/android": "^7.0.0",
"@capacitor/core": "^7.0.0",
"@capacitor/ios": "^7.0.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/authgear-core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@authgear/core",
"version": "2.14.0",
"version": "2.15.0",
"license": "Apache-2.0",
"main": "src/index.ts",
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/authgear-react-native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@authgear/react-native",
"version": "2.14.0",
"version": "2.15.0",
"license": "Apache-2.0",
"main": "dist/authgear-react-native.js",
"files": [
Expand All @@ -11,7 +11,7 @@
"android"
],
"devDependencies": {
"@authgear/core": "2.14.0",
"@authgear/core": "2.15.0",
"@types/react-native": "0.69.1",
"core-js-pure": "^3.37.0"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/authgear-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@authgear/web",
"version": "2.14.0",
"version": "2.15.0",
"license": "Apache-2.0",
"main": "dist/authgear-web.cjs.js",
"module": "dist/authgear-web.module.js",
Expand All @@ -11,7 +11,7 @@
"dist/authgear-web.iife.js"
],
"devDependencies": {
"@authgear/core": "2.14.0",
"@authgear/core": "2.15.0",
"core-js-pure": "^3.37.0"
},
"keywords": [
Expand Down
14 changes: 8 additions & 6 deletions scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,17 @@ npm run test
VERSION="$VERSION" npm run build

# Update the lock files in example apps to match VERSION.
(cd example/reactweb && npm install)
(cd example/reactnative && yarn install)
(cd example/capacitor && npm install)
(set -eu; cd example/reactweb; npm install)
(set -eu; cd example/reactnative; yarn install)
(set -eu; cd example/capacitor; npm install)
(set -eu; cd example/reactnative/ios; bundle exec pod install)
(set -eu; cd example/capacitor/ios/App; bundle exec pod install)

git tag -a v"$VERSION" -s -m "Release v$VERSION"
# The main branch is now protected. We cannot push to it directly.
# git push git@github.com:authgear/authgear-sdk-js.git "$GIT_BRANCH"
git push git@github.com:authgear/authgear-sdk-js.git v"$VERSION"

(cd packages/authgear-web && npm publish --access public)
(cd packages/authgear-react-native && npm publish --access public)
(cd packages/authgear-capacitor && npm publish --access public)
(set -eu; cd packages/authgear-web; npm publish --access public)
(set -eu; cd packages/authgear-react-native; npm publish --access public)
(set -eu; cd packages/authgear-capacitor; npm publish --access public)