Skip to content

Commit

Permalink
v2.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ConradIrwin committed May 27, 2014
1 parent f81ba40 commit f9f728e
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
=========

2.3.5
-----
- Support for bower.json
- Fix issue caused by loading bugsnag asyncily
- Support for full backtraces in setImmediate functions

2.3.4
-----
- Fix issue with passing metadata to notifyException using metadata as name
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ that the javascript will never change, feel free to include the specific version
directly.
```html
<script src="//d2wy8f7a9ursnm.cloudfront.net/bugsnag-2.3.4.min.js"
<script src="//d2wy8f7a9ursnm.cloudfront.net/bugsnag-2.3.5.min.js"
data-apikey="YOUR-API-KEY-HERE"></script>
```

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "bugsnag",
"version": "2.3.4",
"version": "2.3.5",
"main": "./src/bugsnag.js"
}
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "bugsnag",
"version": "2.3.4",
"version": "2.3.5",
"main": "./src/bugsnag.js"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bugsnag-js",
"version": "2.3.4",
"version": "2.3.5",
"private": true,
"devDependencies": {
"grunt": "~0.4.2",
Expand Down
2 changes: 1 addition & 1 deletion src/bugsnag.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@
// Set up default notifier settings.
var DEFAULT_BASE_ENDPOINT = "https://notify.bugsnag.com/";
var DEFAULT_NOTIFIER_ENDPOINT = DEFAULT_BASE_ENDPOINT + "js";
var NOTIFIER_VERSION = "2.3.4";
var NOTIFIER_VERSION = "2.3.5";

// Keep a reference to the currently executing script in the DOM.
// We'll use this later to extract settings from attributes.
Expand Down

0 comments on commit f9f728e

Please sign in to comment.