diff --git a/CHANGELOG.md b/CHANGELOG.md index bc7ee57..1d02b46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,18 @@ ### ๐Ÿ›  Breaking changes -- Upgrade `@sentry/react-native` to `5.5.0`. - - Checkout [the migration guide](https://docs.sentry.io/platforms/react-native/migration/#from-4x-to-5x) for breaking changes +### ๐ŸŽ‰ New features + +### ๐Ÿ› Bug fixes + +### ๐Ÿงน Chores + +## [7.0.0](https://github.com/expo/sentry-expo/releases/tag/v7.0.0) - 2023-06-16 + +### ๐Ÿ›  Breaking changes + +- Upgrade `@sentry/react-native` to `5.5.0`. ([#337](https://github.com/expo/sentry-expo/pull/337) by [@krystofwoldrich](https://github.com/krystofwoldrich)) +Checkout [the migration guide](https://docs.sentry.io/platforms/react-native/migration/#from-4x-to-5x) for breaking changes ### ๐ŸŽ‰ New features diff --git a/build/version.d.ts b/build/version.d.ts index 92756ed..78226fe 100644 --- a/build/version.d.ts +++ b/build/version.d.ts @@ -1,6 +1,6 @@ import { SDK_VERSION as SENTRY_REACT_VERSION } from '@sentry/react'; export declare const SENTRY_EXPO_PACKAGE = "npm:sentry-expo"; -export declare const SENTRY_EXPO_VERSION = "6.2.1"; +export declare const SENTRY_EXPO_VERSION = "7.0.0"; export declare const SENTRY_REACT_NATIVE_PACKAGE = "npm:@sentry/react-native"; export declare const SENTRY_REACT_PACKAGE = "npm:@sentry/react"; export { SENTRY_REACT_VERSION }; diff --git a/build/version.js b/build/version.js index 0971efd..10adbe5 100644 --- a/build/version.js +++ b/build/version.js @@ -4,7 +4,7 @@ exports.SENTRY_REACT_VERSION = exports.SENTRY_REACT_PACKAGE = exports.SENTRY_REA const react_1 = require("@sentry/react"); Object.defineProperty(exports, "SENTRY_REACT_VERSION", { enumerable: true, get: function () { return react_1.SDK_VERSION; } }); exports.SENTRY_EXPO_PACKAGE = 'npm:sentry-expo'; -exports.SENTRY_EXPO_VERSION = '6.2.1'; +exports.SENTRY_EXPO_VERSION = '7.0.0'; exports.SENTRY_REACT_NATIVE_PACKAGE = 'npm:@sentry/react-native'; exports.SENTRY_REACT_PACKAGE = 'npm:@sentry/react'; //# sourceMappingURL=version.js.map \ No newline at end of file diff --git a/build/version.js.map b/build/version.js.map index 4ff7f3d..b1b4df0 100644 --- a/build/version.js.map +++ b/build/version.js.map @@ -1 +1 @@ -{"version":3,"file":"version.js","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":";;;AAAA,yCAAoE;AAO3D,qGAPe,mBAAoB,OAOf;AALhB,QAAA,mBAAmB,GAAG,iBAAiB,CAAC;AACxC,QAAA,mBAAmB,GAAG,OAAO,CAAC;AAE9B,QAAA,2BAA2B,GAAG,0BAA0B,CAAC;AACzD,QAAA,oBAAoB,GAAG,mBAAmB,CAAC","sourcesContent":["import { SDK_VERSION as SENTRY_REACT_VERSION } from '@sentry/react';\n\nexport const SENTRY_EXPO_PACKAGE = 'npm:sentry-expo';\nexport const SENTRY_EXPO_VERSION = '6.2.1';\n\nexport const SENTRY_REACT_NATIVE_PACKAGE = 'npm:@sentry/react-native';\nexport const SENTRY_REACT_PACKAGE = 'npm:@sentry/react';\nexport { SENTRY_REACT_VERSION };\n"]} \ No newline at end of file +{"version":3,"file":"version.js","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":";;;AAAA,yCAAoE;AAO3D,qGAPe,mBAAoB,OAOf;AALhB,QAAA,mBAAmB,GAAG,iBAAiB,CAAC;AACxC,QAAA,mBAAmB,GAAG,OAAO,CAAC;AAE9B,QAAA,2BAA2B,GAAG,0BAA0B,CAAC;AACzD,QAAA,oBAAoB,GAAG,mBAAmB,CAAC","sourcesContent":["import { SDK_VERSION as SENTRY_REACT_VERSION } from '@sentry/react';\n\nexport const SENTRY_EXPO_PACKAGE = 'npm:sentry-expo';\nexport const SENTRY_EXPO_VERSION = '7.0.0';\n\nexport const SENTRY_REACT_NATIVE_PACKAGE = 'npm:@sentry/react-native';\nexport const SENTRY_REACT_PACKAGE = 'npm:@sentry/react';\nexport { SENTRY_REACT_VERSION };\n"]} \ No newline at end of file diff --git a/package.json b/package.json index 0cfd521..833cafe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sentry-expo", - "version": "6.2.1", + "version": "7.0.0", "description": "Catch your Javascript errors for your production Expo apps!", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/version.ts b/src/version.ts index f60266c..62f7a71 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1,7 +1,7 @@ import { SDK_VERSION as SENTRY_REACT_VERSION } from '@sentry/react'; export const SENTRY_EXPO_PACKAGE = 'npm:sentry-expo'; -export const SENTRY_EXPO_VERSION = '6.2.1'; +export const SENTRY_EXPO_VERSION = '7.0.0'; export const SENTRY_REACT_NATIVE_PACKAGE = 'npm:@sentry/react-native'; export const SENTRY_REACT_PACKAGE = 'npm:@sentry/react';