Skip to content

Commit

Permalink
v2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ConradIrwin committed Feb 6, 2014
1 parent b589272 commit d7ea283
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Changelog
=========

2.1.1
-----

- Track document.currentScript across async boundaries.

2.1.0
-----

- Fix additional parameters to window.setTimeout etc.

2.0.2
-----
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ that the javascript will never change, feel free to include the specific version
directly.

```html
<script src="//d2wy8f7a9ursnm.cloudfront.net/bugsnag-2.1.0.min.js"
<script src="//d2wy8f7a9ursnm.cloudfront.net/bugsnag-2.1.1.min.js"
data-apikey="YOUR-API-KEY-HERE"></script>
```

Expand Down
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.1.0",
"version": "2.1.1",
"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.1.0",
"version": "2.1.1",
"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 @@ -181,7 +181,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.1.0";
var NOTIFIER_VERSION = "2.1.1";

// 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 d7ea283

Please sign in to comment.