Skip to content

Commit

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

All the changes made to toastify-js library.

## [1.11.1] - 2021-07-15

* Bugfix: IE11 support broke since style option #77

## [1.11.0] - 2021-04-25

* New property `oldestFirst` allows to set the order of adding new toasts to page (#70 and #71)
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.0-brightgreen.svg)](https://www.npmjs.com/package/toastify-js)
[![toastify-js](https://img.shields.io/badge/toastify--js-1.11.1-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.0",
"version": "1.11.1",
"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.0
* Toastify js 1.11.1
* 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.0";
this.version = "1.11.1";

/**
* 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.0
* Toastify js 1.11.1
* 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.0
* Toastify js 1.11.1
* 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.0";
version = "1.11.1";

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

0 comments on commit be5d33d

Please sign in to comment.