Skip to content

Commit d7c2bad

Browse files
committed
v7.0.1
1 parent 38985d7 commit d7c2bad

File tree

6 files changed

+15
-5
lines changed

6 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@
88

99
### 🐛 Bug fixes
1010

11+
### 🧹 Chores
12+
13+
## [7.0.1](https://github.com/expo/sentry-expo/releases/tag/v7.0.1) - 2023-07-12
14+
15+
### 🛠 Breaking changes
16+
17+
### 🎉 New features
18+
19+
### 🐛 Bug fixes
20+
1121
- Remove dependency on expo-updates ([#356](https://github.com/expo/sentry-expo/pull/356) by [@brentvatne](https://github.com/brentvatne))
1222
- Create new options object on every init to avoid read only error when initializing multiple times ([#350](https://github.com/expo/sentry-expo/pull/350) by [@krystofwoldrich](https://github.com/krystofwoldrich))
1323

build/version.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { SDK_VERSION as SENTRY_REACT_VERSION } from '@sentry/react';
22
export declare const SENTRY_EXPO_PACKAGE = "npm:sentry-expo";
3-
export declare const SENTRY_EXPO_VERSION = "7.0.0";
3+
export declare const SENTRY_EXPO_VERSION = "7.0.1";
44
export declare const SENTRY_REACT_NATIVE_PACKAGE = "npm:@sentry/react-native";
55
export declare const SENTRY_REACT_PACKAGE = "npm:@sentry/react";
66
export { SENTRY_REACT_VERSION };

build/version.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/version.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sentry-expo",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"description": "Catch your Javascript errors for your production Expo apps!",
55
"main": "build/index.js",
66
"types": "build/index.d.ts",

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { SDK_VERSION as SENTRY_REACT_VERSION } from '@sentry/react';
22

33
export const SENTRY_EXPO_PACKAGE = 'npm:sentry-expo';
4-
export const SENTRY_EXPO_VERSION = '7.0.0';
4+
export const SENTRY_EXPO_VERSION = '7.0.1';
55

66
export const SENTRY_REACT_NATIVE_PACKAGE = 'npm:@sentry/react-native';
77
export const SENTRY_REACT_PACKAGE = 'npm:@sentry/react';

0 commit comments

Comments
 (0)