Skip to content

Commit

Permalink
release: 3.26.0
Browse files Browse the repository at this point in the history
  • Loading branch information
HazAT committed Jun 7, 2018
1 parent 6d8f2b9 commit f7bfd03
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/sentry-doc-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,6 @@
}
},
"vars": {
"RAVEN_VERSION": "3.25.2"
"RAVEN_VERSION": "3.26.0"
}
}
2 changes: 1 addition & 1 deletion packages/raven-js/bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "raven-js",
"version": "3.25.2",
"version": "3.26.0",
"dependencies": {},
"main": "dist/raven.js",
"ignore": [
Expand Down
2 changes: 1 addition & 1 deletion packages/raven-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"raven",
"sentry"
],
"version": "3.25.2",
"version": "3.26.0",
"repository": "git://github.com/getsentry/raven-js.git",
"license": "BSD-2-Clause",
"homepage": "https://github.com/getsentry/raven-js",
Expand Down
6 changes: 3 additions & 3 deletions packages/raven-js/scripts/deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ function updateBowerConfig(nextVersion) {
}

function updateDocsConfig(nextVersion) {
const filePath = path.join(__dirname, '../docs/sentry-doc-config.json');
const originalData = require('../docs/sentry-doc-config.json');
const filePath = path.join(__dirname, '../../../docs/sentry-doc-config.json');
const originalData = require('../../../docs/sentry-doc-config.json');
const data = Object.assign({}, originalData, {
vars: Object.assign({}, originalData.vars, {
RAVEN_VERSION: nextVersion
Expand Down Expand Up @@ -198,7 +198,7 @@ function execCommand(command) {
}

function runBuild() {
execCommand(`grunt dist`);
execCommand(`node ./node_modules/.bin/grunt dist`);
console.log('✔ Build process completed');
}

Expand Down
2 changes: 1 addition & 1 deletion packages/raven-js/src/raven.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ Raven.prototype = {
// webpack (using a build step causes webpack #1617). Grunt verifies that
// this value matches package.json during build.
// See: https://github.com/getsentry/raven-js/issues/465
VERSION: '3.25.2',
VERSION: '3.26.0',

debug: false,

Expand Down
4 changes: 2 additions & 2 deletions packages/raven-js/test/raven.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1386,7 +1386,7 @@ describe('globals', function() {
extra: {'session:duration': 100}
});
assert.deepEqual(opts.auth, {
sentry_client: 'raven-js/3.25.2',
sentry_client: 'raven-js/3.26.0',
sentry_key: 'abc',
sentry_version: '7'
});
Expand Down Expand Up @@ -1433,7 +1433,7 @@ describe('globals', function() {
extra: {'session:duration': 100}
});
assert.deepEqual(opts.auth, {
sentry_client: 'raven-js/3.25.2',
sentry_client: 'raven-js/3.26.0',
sentry_key: 'abc',
sentry_secret: 'def',
sentry_version: '7'
Expand Down

0 comments on commit f7bfd03

Please sign in to comment.