Skip to content

Commit 35c57bb

Browse files
committed
Update package versioning
1 parent 9a17079 commit 35c57bb

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
## [1.4] - 2019-05-12
5+
## [1.4.0] - 2019-05-12
66

77
* **Breaking Change**: Manually import CSS while using as module in your modern JavaScript applications.
88
* Ability to pause the toast dismiss timer on hover (Using `stopOnFocus` property)

README.md

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

6-
[![toastify-js](https://img.shields.io/badge/toastify--js-1.4-brightgreen.svg)](https://www.npmjs.com/package/toastify-js)
6+
[![toastify-js](https://img.shields.io/badge/toastify--js-1.4.0-brightgreen.svg)](https://www.npmjs.com/package/toastify-js)
77

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

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

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

0 commit comments

Comments
 (0)