Skip to content

Commit f7bfd03

Browse files
committed
release: 3.26.0
1 parent 6d8f2b9 commit f7bfd03

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

docs/sentry-doc-config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,6 @@
6666
}
6767
},
6868
"vars": {
69-
"RAVEN_VERSION": "3.25.2"
69+
"RAVEN_VERSION": "3.26.0"
7070
}
7171
}

packages/raven-js/bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "raven-js",
3-
"version": "3.25.2",
3+
"version": "3.26.0",
44
"dependencies": {},
55
"main": "dist/raven.js",
66
"ignore": [

packages/raven-js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"raven",
1010
"sentry"
1111
],
12-
"version": "3.25.2",
12+
"version": "3.26.0",
1313
"repository": "git://github.com/getsentry/raven-js.git",
1414
"license": "BSD-2-Clause",
1515
"homepage": "https://github.com/getsentry/raven-js",

packages/raven-js/scripts/deploy.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,8 @@ function updateBowerConfig(nextVersion) {
153153
}
154154

155155
function updateDocsConfig(nextVersion) {
156-
const filePath = path.join(__dirname, '../docs/sentry-doc-config.json');
157-
const originalData = require('../docs/sentry-doc-config.json');
156+
const filePath = path.join(__dirname, '../../../docs/sentry-doc-config.json');
157+
const originalData = require('../../../docs/sentry-doc-config.json');
158158
const data = Object.assign({}, originalData, {
159159
vars: Object.assign({}, originalData.vars, {
160160
RAVEN_VERSION: nextVersion
@@ -198,7 +198,7 @@ function execCommand(command) {
198198
}
199199

200200
function runBuild() {
201-
execCommand(`grunt dist`);
201+
execCommand(`node ./node_modules/.bin/grunt dist`);
202202
console.log('✔ Build process completed');
203203
}
204204

packages/raven-js/src/raven.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ Raven.prototype = {
139139
// webpack (using a build step causes webpack #1617). Grunt verifies that
140140
// this value matches package.json during build.
141141
// See: https://github.com/getsentry/raven-js/issues/465
142-
VERSION: '3.25.2',
142+
VERSION: '3.26.0',
143143

144144
debug: false,
145145

packages/raven-js/test/raven.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1386,7 +1386,7 @@ describe('globals', function() {
13861386
extra: {'session:duration': 100}
13871387
});
13881388
assert.deepEqual(opts.auth, {
1389-
sentry_client: 'raven-js/3.25.2',
1389+
sentry_client: 'raven-js/3.26.0',
13901390
sentry_key: 'abc',
13911391
sentry_version: '7'
13921392
});
@@ -1433,7 +1433,7 @@ describe('globals', function() {
14331433
extra: {'session:duration': 100}
14341434
});
14351435
assert.deepEqual(opts.auth, {
1436-
sentry_client: 'raven-js/3.25.2',
1436+
sentry_client: 'raven-js/3.26.0',
14371437
sentry_key: 'abc',
14381438
sentry_secret: 'def',
14391439
sentry_version: '7'

0 commit comments

Comments
 (0)