Skip to content

Commit

Permalink
Merge branch 'release/5.23.0-alpha.1' into kw-add-replay-v0
Browse files Browse the repository at this point in the history
  • Loading branch information
getsentry-bot committed May 9, 2024
2 parents e293d5f + 5519309 commit 0bd517d
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 5.23.0-alpha.1

### Fixes

Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"name": "@sentry/react-native",
"homepage": "https://github.com/getsentry/sentry-react-native",
"repository": "https://github.com/getsentry/sentry-react-native",
"version": "5.23.0-alpha.0",
"version": "5.23.0-alpha.1",
"description": "Official Sentry SDK for react-native",
"typings": "dist/js/index.d.ts",
"types": "dist/js/index.d.ts",
Expand Down
8 changes: 4 additions & 4 deletions samples/expo/app.json
Expand Up @@ -4,7 +4,7 @@
"slug": "sentry-react-native-expo-sample",
"jsEngine": "hermes",
"scheme": "sentry-expo-sample",
"version": "5.23.0-alpha.0",
"version": "5.23.0-alpha.1",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
Expand All @@ -19,15 +19,15 @@
"ios": {
"supportsTablet": true,
"bundleIdentifier": "io.sentry.expo.sample",
"buildNumber": "6"
"buildNumber": "7"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "io.sentry.expo.sample",
"versionCode": 6
"versionCode": 7
},
"web": {
"bundler": "metro",
Expand Down Expand Up @@ -59,4 +59,4 @@
]
]
}
}
}
2 changes: 1 addition & 1 deletion samples/expo/package.json
@@ -1,6 +1,6 @@
{
"name": "sentry-react-native-expo-sample",
"version": "5.23.0-alpha.0",
"version": "5.23.0-alpha.1",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
Expand Down
4 changes: 2 additions & 2 deletions samples/react-native/android/app/build.gradle
Expand Up @@ -134,8 +134,8 @@ android {
applicationId "io.sentry.reactnative.sample"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 13
versionName "5.23.0-alpha.0"
versionCode 14
versionName "5.23.0-alpha.1"
}

signingConfigs {
Expand Down
Expand Up @@ -21,7 +21,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>13</string>
<string>14</string>
<key>LSRequiresIPhoneOS</key>
<true />
<key>NSAppTransportSecurity</key>
Expand Down
Expand Up @@ -19,6 +19,6 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>13</string>
<string>14</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion samples/react-native/package.json
@@ -1,6 +1,6 @@
{
"name": "sentry-react-native-sample",
"version": "5.23.0-alpha.0",
"version": "5.23.0-alpha.1",
"private": true,
"scripts": {
"postinstall": "patch-package",
Expand Down
2 changes: 1 addition & 1 deletion src/js/version.ts
@@ -1,3 +1,3 @@
export const SDK_PACKAGE_NAME = 'npm:@sentry/react-native';
export const SDK_NAME = 'sentry.javascript.react-native';
export const SDK_VERSION = '5.23.0-alpha.0';
export const SDK_VERSION = '5.23.0-alpha.1';

0 comments on commit 0bd517d

Please sign in to comment.