diff --git a/CHANGES b/CHANGES index 9bc5b2e5..978fd8ad 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,9 @@ +## 1.0.2 + +### Various fixes & improvements + +- fix: require instead of import in esm (#162) by @JonasBa + ## 1.0.1 ### Various fixes & improvements diff --git a/package-lock.json b/package-lock.json index 6908408c..c77fe3d0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@sentry/profiling-node", - "version": "1.0.1", + "version": "1.0.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@sentry/profiling-node", - "version": "1.0.1", + "version": "1.0.2", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 09a5f9bb..5606f465 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/profiling-node", - "version": "1.0.1", + "version": "1.0.2", "description": "Sampling based nodejs profiler.", "repository": { "type": "git", diff --git a/src/sdk_version.ts b/src/sdk_version.ts index 80f1c614..8c22265f 100644 --- a/src/sdk_version.ts +++ b/src/sdk_version.ts @@ -1,3 +1,3 @@ // This is an auto generated file. Do not edit this file directly. // The version is bumped by scripts/bump_version.sh -export const SDK_VERSION = '1.0.1'; +export const SDK_VERSION = '1.0.2';