Skip to content

Commit dfd17fc

Browse files
committed
Bump version to 1.9.2
1 parent dda68c3 commit dfd17fc

File tree

5 files changed

+31
-18
lines changed

5 files changed

+31
-18
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.2] - 2020-09-24
6+
7+
* Bugfix: Max width problem for firefox browser #61
8+
59
## [1.9.1] - 2020-08-13
610

711
* Bugfix: Avatar positioning based on toast position

README.md

Lines changed: 23 additions & 14 deletions
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.1-brightgreen.svg)](https://www.npmjs.com/package/toastify-js)
7+
[![toastify-js](https://img.shields.io/badge/toastify--js-1.9.2-brightgreen.svg)](https://www.npmjs.com/package/toastify-js)
88

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

@@ -215,6 +215,8 @@ If `gravity` is equals to `bottom`, it will be pushed from bottom.
215215
/><br />skjnldsv</a
216216
>
217217
</td>
218+
</tr>
219+
<tr>
218220
<td align="center">
219221
<a href="https://github.com/chasedeanda"
220222
><img
@@ -224,8 +226,6 @@ If `gravity` is equals to `bottom`, it will be pushed from bottom.
224226
/><br />chasedeanda</a
225227
>
226228
</td>
227-
</tr>
228-
<tr>
229229
<td align="center">
230230
<a href="https://github.com/Wachiwi"
231231
><img
@@ -253,6 +253,15 @@ If `gravity` is equals to `bottom`, it will be pushed from bottom.
253253
/><br />haydster7</a
254254
>
255255
</td>
256+
<td align="center">
257+
<a href="https://github.com/joaquinwojcik"
258+
><img
259+
alt="joaquinwojcik"
260+
src="https://avatars3.githubusercontent.com/u/3205737?v=4"
261+
width="117"
262+
/><br />joaquinwojcik</a
263+
>
264+
</td>
256265
<td align="center">
257266
<a href="https://github.com/juliushaertl"
258267
><img
@@ -262,6 +271,8 @@ If `gravity` is equals to `bottom`, it will be pushed from bottom.
262271
/><br />juliushaertl</a
263272
>
264273
</td>
274+
</tr>
275+
<tr>
265276
<td align="center">
266277
<a href="https://github.com/mort3za"
267278
><img
@@ -271,6 +282,15 @@ If `gravity` is equals to `bottom`, it will be pushed from bottom.
271282
/><br />mort3za</a
272283
>
273284
</td>
285+
<td align="center">
286+
<a href="https://github.com/Sandip124"
287+
><img
288+
alt="Sandip124"
289+
src="https://avatars3.githubusercontent.com/u/37034590?v=4"
290+
width="117"
291+
/><br />Sandip124</a
292+
>
293+
</td>
274294
<td align="center">
275295
<a href="https://github.com/Tadaz"
276296
><img
@@ -289,8 +309,6 @@ If `gravity` is equals to `bottom`, it will be pushed from bottom.
289309
/><br />t12ung</a
290310
>
291311
</td>
292-
</tr>
293-
<tr>
294312
<td align="center">
295313
<a href="https://github.com/victorfeijo"
296314
><img
@@ -309,15 +327,6 @@ If `gravity` is equals to `bottom`, it will be pushed from bottom.
309327
/><br />fiatjaf</a
310328
>
311329
</td>
312-
<td align="center">
313-
<a href="https://github.com/joaquinwojcik"
314-
><img
315-
alt="fiatjaf"
316-
src="https://avatars3.githubusercontent.com/u/3205737?v=4"
317-
width="117"
318-
/><br />joaquinwojcik</a
319-
>
320-
</td>
321330
</tr>
322331
</table>
323332

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.1",
3+
"version": "1.9.2",
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.1
2+
* Toastify js 1.9.2
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.1
2+
* Toastify js 1.9.2
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.1";
21+
version = "1.9.2";
2222

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

0 commit comments

Comments
 (0)