Skip to content

Commit

Permalink
Bump version to v1.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
apvarun committed Jul 21, 2022
1 parent 5b8fe2a commit a907853
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.12.0] - 2022-07-21

* Accessibility fix: Support aria-live for the toast
* Accessibility fix: Add aria-label for close icon

## [1.11.2] - 2021-10-06

* Bugfix: Style Options: "backgroundColor" not working! (#81)
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.2-brightgreen.svg)](https://www.npmjs.com/package/toastify-js)
[![toastify-js](https://img.shields.io/badge/toastify--js-1.12.0-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.2",
"version": "1.12.0",
"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.2
* Toastify js 1.12.0
* https://github.com/apvarun/toastify-js
* @license MIT licensed
*
Expand Down Expand Up @@ -63,7 +63,7 @@ class Toastify {
* @type {string}
* @public
*/
this.version = "1.11.2";
this.version = "1.12.0";

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

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

0 comments on commit a907853

Please sign in to comment.