Skip to content

Commit

Permalink
Bump version to v1.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
apvarun committed Oct 6, 2021
1 parent 6820255 commit d88cfbb
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All the changes made to toastify-js library.

## [1.11.2] - 2021-10-06

* Bugfix: Style Options: "backgroundColor" not working! (#81)
* Bugfix: "ShadowRoot is undefined" in older browsers (#83)

## [1.11.1] - 2021-07-15

* Bugfix: IE11 support broke since style option #77
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

![Built with JavaScript](https://img.shields.io/badge/Built%20with-JavaScript-red?style=for-the-badge&logo=javascript)

[![toastify-js](https://img.shields.io/badge/toastify--js-1.11.1-brightgreen.svg)](https://www.npmjs.com/package/toastify-js)
[![toastify-js](https://img.shields.io/badge/toastify--js-1.11.2-brightgreen.svg)](https://www.npmjs.com/package/toastify-js)
![MIT License](https://img.shields.io/npm/l/toastify-js)

Toastify is a lightweight, vanilla JS toast notification library.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "toastify-js",
"version": "1.11.1",
"version": "1.11.2",
"description":
"Toastify is a lightweight, vanilla JS toast notification library.",
"main": "./src/toastify.js",
Expand Down
4 changes: 2 additions & 2 deletions src/toastify-es.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Toastify js 1.11.1
* Toastify js 1.11.2
* https://github.com/apvarun/toastify-js
* @license MIT licensed
*
Expand Down Expand Up @@ -61,7 +61,7 @@ class Toastify {
* @type {string}
* @public
*/
this.version = "1.11.1";
this.version = "1.11.2";

/**
* The configuration object to configure Toastify
Expand Down
2 changes: 1 addition & 1 deletion src/toastify.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Toastify js 1.11.1
* Toastify js 1.11.2
* https://github.com/apvarun/toastify-js
* @license MIT licensed
*
Expand Down
4 changes: 2 additions & 2 deletions src/toastify.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Toastify js 1.11.1
* Toastify js 1.11.2
* https://github.com/apvarun/toastify-js
* @license MIT licensed
*
Expand All @@ -18,7 +18,7 @@
return new Toastify.lib.init(options);
},
// Library version
version = "1.11.1";
version = "1.11.2";

// Set the default global options
Toastify.defaults = {
Expand Down

0 comments on commit d88cfbb

Please sign in to comment.