Skip to content

Commit 0e25082

Browse files
committed
Bump version to 1.9.1
1 parent 4c0ea6e commit 0e25082

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

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

5+
## [1.9.1] - 2020-08-13
6+
7+
* Bugfix: Avatar positioning based on toast position
8+
59
## [1.9.0] - 2020-07-22
610

711
* Add support for providing toast `offset`

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
![forthebadge](https://forthebadge.com/images/badges/made-with-javascript.svg)
55
![forthebadge](https://forthebadge.com/images/badges/built-with-love.svg)
66

7-
[![toastify-js](https://img.shields.io/badge/toastify--js-1.9.0-brightgreen.svg)](https://www.npmjs.com/package/toastify-js)
7+
[![toastify-js](https://img.shields.io/badge/toastify--js-1.9.1-brightgreen.svg)](https://www.npmjs.com/package/toastify-js)
88

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

package.json

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

src/toastify.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Toastify js 1.9.0
2+
* Toastify js 1.9.1
33
* https://github.com/apvarun/toastify-js
44
* @license MIT licensed
55
*

src/toastify.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Toastify js 1.9.0
2+
* Toastify js 1.9.1
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.9.0";
21+
version = "1.9.1";
2222

2323
// Defining the prototype of the object
2424
Toastify.lib = Toastify.prototype = {

0 commit comments

Comments
 (0)