Skip to content

Commit d253d9f

Browse files
committed
Disregard-versioning experimentation
1 parent a26289a commit d253d9f

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ Be sure to export your auth token: `export SENTRY_AUTH_TOKEN=<token>`
5252
### Versioning
5353

5454
Don't foget to bump your release version depending on platform:
55+
5556
iOS: `Info.plist` `CFBundleShortVersionString`
5657
android: `app.build.gradle` `versionName`
5758

android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ android {
139139
minSdkVersion rootProject.ext.minSdkVersion
140140
targetSdkVersion rootProject.ext.targetSdkVersion
141141
versionCode 2
142-
versionName "1.5"
142+
versionName "1.7"
143143
}
144144
splits {
145145
abi {

ios/sentry_react_native/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.5</string>
20+
<string>1.7</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sentry_react_native",
3-
"version": "1.3.0",
3+
"version": "1.7.0",
44
"private": true,
55
"scripts": {
66
"android": "react-native run-android",

src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import CartScreen from './screens/CartScreen';
2020
import Toast from 'react-native-toast-message';
2121

2222
import {store} from './reduxApp';
23-
// import {version as packageVersion} from '../../package.json';
23+
import {version as packageVersion} from '../package.json';
2424
import {SENTRY_INTERNAL_DSN} from './dsn';
2525

2626
const reactNavigationV5Instrumentation = new Sentry.ReactNavigationV5Instrumentation(

0 commit comments

Comments
 (0)