Skip to content

Commit a907853

Browse files
committed
Bump version to v1.12.0
1 parent 5b8fe2a commit a907853

6 files changed

+12
-7
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All the changes made to toastify-js library.
44

5+
## [1.12.0] - 2022-07-21
6+
7+
* Accessibility fix: Support aria-live for the toast
8+
* Accessibility fix: Add aria-label for close icon
9+
510
## [1.11.2] - 2021-10-06
611

712
* Bugfix: Style Options: "backgroundColor" not working! (#81)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

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

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

99
Toastify is a lightweight, vanilla JS toast notification library.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "toastify-js",
3-
"version": "1.11.2",
3+
"version": "1.12.0",
44
"description":
55
"Toastify is a lightweight, vanilla JS toast notification library.",
66
"main": "./src/toastify.js",

src/toastify-es.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Toastify js 1.11.2
2+
* Toastify js 1.12.0
33
* https://github.com/apvarun/toastify-js
44
* @license MIT licensed
55
*
@@ -63,7 +63,7 @@ class Toastify {
6363
* @type {string}
6464
* @public
6565
*/
66-
this.version = "1.11.2";
66+
this.version = "1.12.0";
6767

6868
/**
6969
* The configuration object to configure Toastify

src/toastify.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Toastify js 1.11.2
2+
* Toastify js 1.12.0
33
* https://github.com/apvarun/toastify-js
44
* @license MIT licensed
55
*

src/toastify.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Toastify js 1.11.2
2+
* Toastify js 1.12.0
33
* https://github.com/apvarun/toastify-js
44
* @license MIT licensed
55
*
@@ -18,7 +18,7 @@
1818
return new Toastify.lib.init(options);
1919
},
2020
// Library version
21-
version = "1.11.2";
21+
version = "1.12.0";
2222

2323
// Set the default global options
2424
Toastify.defaults = {

0 commit comments

Comments
 (0)