Skip to content

Commit

Permalink
Release v1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sgray committed May 26, 2020
1 parent e255976 commit 9498c27
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 9 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

## [1.1.3] - 2020-05-26
### Changed
- [browser/node] Remove onUnhandledrejection parameter type

## [1.1.2] - 2020-05-05
### Fixed
- [browser] Add guard for window being undefined
Expand Down Expand Up @@ -46,7 +50,8 @@

## [1.0.0] - 2019-10-21

[Unreleased]: https://github.com/airbrake/airbrake-js/compare/v1.1.2...master
[Unreleased]: https://github.com/airbrake/airbrake-js/compare/v1.1.3...master
[1.1.3]: https://github.com/airbrake/airbrake-js/releases/tag/v1.1.3
[1.1.2]: https://github.com/airbrake/airbrake-js/releases/tag/v1.1.2
[1.1.1]: https://github.com/airbrake/airbrake-js/releases/tag/v1.1.1
[1.1.0]: https://github.com/airbrake/airbrake-js/releases/tag/v1.1.0
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.2",
"version": "1.1.3",
"npmClient": "yarn",
"useWorkspaces": true
}
2 changes: 1 addition & 1 deletion packages/browser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airbrake/browser",
"version": "1.1.2",
"version": "1.1.3",
"description": "Official Airbrake notifier for browsers",
"author": "Airbrake",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/browser/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const NOTIFIER_NAME = 'airbrake-js/browser';
export const NOTIFIER_VERSION = '1.1.2';
export const NOTIFIER_VERSION = '1.1.3';
export const NOTIFIER_URL =
'https://github.com/airbrake/airbrake-js/tree/master/packages/browser';
2 changes: 1 addition & 1 deletion packages/node/examples/express/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "airbrake-example",
"dependencies": {
"@airbrake/node": "^1.1.2",
"@airbrake/node": "^1.1.3",
"express": "^4.17.1",
"pg": "^8.0.0"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/node/examples/nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "airbrake-example",
"dependencies": {
"@airbrake/node": "^1.1.2"
"@airbrake/node": "^1.1.3"
}
}
4 changes: 2 additions & 2 deletions packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airbrake/node",
"version": "1.1.2",
"version": "1.1.3",
"description": "Official Airbrake notifier for Node.js",
"author": "Airbrake",
"license": "MIT",
Expand All @@ -17,7 +17,7 @@
"notifier"
],
"dependencies": {
"@airbrake/browser": "^1.1.2",
"@airbrake/browser": "^1.1.3",
"cross-fetch": "^3.0.4",
"error-stack-parser": "^2.0.4",
"tdigest": "^0.1.1"
Expand Down
2 changes: 1 addition & 1 deletion packages/node/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const NOTIFIER_NAME = 'airbrake-js/node';
export const NOTIFIER_VERSION = '1.1.2';
export const NOTIFIER_VERSION = '1.1.3';
export const NOTIFIER_URL =
'https://github.com/airbrake/airbrake-js/tree/master/packages/node';

0 comments on commit 9498c27

Please sign in to comment.