Skip to content

Commit

Permalink
Bump version to 1.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
apvarun committed Sep 24, 2020
1 parent dda68c3 commit dfd17fc
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 18 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.9.2] - 2020-09-24

* Bugfix: Max width problem for firefox browser #61

## [1.9.1] - 2020-08-13

* Bugfix: Avatar positioning based on toast position
Expand Down
37 changes: 23 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
![forthebadge](https://forthebadge.com/images/badges/made-with-javascript.svg)
![forthebadge](https://forthebadge.com/images/badges/built-with-love.svg)

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

Toastify is a lightweight, vanilla JS toast notification library.

Expand Down Expand Up @@ -215,6 +215,8 @@ If `gravity` is equals to `bottom`, it will be pushed from bottom.
/><br />skjnldsv</a
>
</td>
</tr>
<tr>
<td align="center">
<a href="https://github.com/chasedeanda"
><img
Expand All @@ -224,8 +226,6 @@ If `gravity` is equals to `bottom`, it will be pushed from bottom.
/><br />chasedeanda</a
>
</td>
</tr>
<tr>
<td align="center">
<a href="https://github.com/Wachiwi"
><img
Expand Down Expand Up @@ -253,6 +253,15 @@ If `gravity` is equals to `bottom`, it will be pushed from bottom.
/><br />haydster7</a
>
</td>
<td align="center">
<a href="https://github.com/joaquinwojcik"
><img
alt="joaquinwojcik"
src="https://avatars3.githubusercontent.com/u/3205737?v=4"
width="117"
/><br />joaquinwojcik</a
>
</td>
<td align="center">
<a href="https://github.com/juliushaertl"
><img
Expand All @@ -262,6 +271,8 @@ If `gravity` is equals to `bottom`, it will be pushed from bottom.
/><br />juliushaertl</a
>
</td>
</tr>
<tr>
<td align="center">
<a href="https://github.com/mort3za"
><img
Expand All @@ -271,6 +282,15 @@ If `gravity` is equals to `bottom`, it will be pushed from bottom.
/><br />mort3za</a
>
</td>
<td align="center">
<a href="https://github.com/Sandip124"
><img
alt="Sandip124"
src="https://avatars3.githubusercontent.com/u/37034590?v=4"
width="117"
/><br />Sandip124</a
>
</td>
<td align="center">
<a href="https://github.com/Tadaz"
><img
Expand All @@ -289,8 +309,6 @@ If `gravity` is equals to `bottom`, it will be pushed from bottom.
/><br />t12ung</a
>
</td>
</tr>
<tr>
<td align="center">
<a href="https://github.com/victorfeijo"
><img
Expand All @@ -309,15 +327,6 @@ If `gravity` is equals to `bottom`, it will be pushed from bottom.
/><br />fiatjaf</a
>
</td>
<td align="center">
<a href="https://github.com/joaquinwojcik"
><img
alt="fiatjaf"
src="https://avatars3.githubusercontent.com/u/3205737?v=4"
width="117"
/><br />joaquinwojcik</a
>
</td>
</tr>
</table>

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.9.1",
"version": "1.9.2",
"description":
"Toastify is a lightweight, vanilla JS toast notification library.",
"main": "./src/toastify.js",
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.9.1
* Toastify js 1.9.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.9.1
* Toastify js 1.9.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.9.1";
version = "1.9.2";

// Defining the prototype of the object
Toastify.lib = Toastify.prototype = {
Expand Down

0 comments on commit dfd17fc

Please sign in to comment.