Skip to content

Commit d5f95a2

Browse files
committed
Bumped
1 parent 0852d8f commit d5f95a2

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"webpackConfigJaid": "universalLib",
3-
"version": "0.1.0",
3+
"version": "1.0.0",
44
"author": "Jaid <jaid.jsx@gmail.com> (https://github.com/Jaid)",
55
"dependencies": {
66
"@babel/runtime": "^7.7.7"

readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Compares two objects and returns the differences.
55

66
<a href="https://raw.githubusercontent.com/Jaid/object-changes/master/license.txt"><img src="https://img.shields.io/github/license/Jaid/object-changes?style=flat-square&color=success" alt="License"/></a>
7-
<a href="https://github.com/Jaid/object-changes/commits"><img src="https://img.shields.io/github/commits-since/Jaid/object-changes/v0.1.0?style=flat-square&logo=github&color=success" alt="Commits since v0.1.0"/></a> <a href="https://github.com/Jaid/object-changes/commits"><img src="https://img.shields.io/github/last-commit/Jaid/object-changes?style=flat-square&logo=github&color=red" alt="Last commit"/></a> <a href="https://github.com/Jaid/object-changes/issues"><img src="https://img.shields.io/github/issues/Jaid/object-changes?style=flat-square&logo=github&color=red" alt="Issues"/></a>
7+
<a href="https://github.com/Jaid/object-changes/commits"><img src="https://img.shields.io/github/commits-since/Jaid/object-changes/v1.0.0?style=flat-square&logo=github&color=success" alt="Commits since v1.0.0"/></a> <a href="https://github.com/Jaid/object-changes/commits"><img src="https://img.shields.io/github/last-commit/Jaid/object-changes?style=flat-square&logo=github&color=red" alt="Last commit"/></a> <a href="https://github.com/Jaid/object-changes/issues"><img src="https://img.shields.io/github/issues/Jaid/object-changes?style=flat-square&logo=github&color=red" alt="Issues"/></a>
88
<a href="https://npmjs.com/package/object-changes"><img src="https://img.shields.io/npm/v/object-changes?style=flat-square&logo=npm&label=latest%20version&color=success" alt="Latest version on npm"/></a> <a href="https://github.com/Jaid/object-changes/network/dependents"><img src="https://img.shields.io/librariesio/dependents/npm/object-changes?style=flat-square&logo=npm&color=red" alt="Dependents"/></a> <a href="https://npmjs.com/package/object-changes"><img src="https://img.shields.io/npm/dm/object-changes?style=flat-square&logo=npm&color=red" alt="Downloads"/></a>
99

1010

@@ -33,15 +33,15 @@ const result = objectChanges(previousObject, nextObject)
3333
## Installation
3434
<a href="https://npmjs.com/package/object-changes"><img src="https://img.shields.io/badge/npm-object--changes-C23039?style=flat-square&logo=npm" alt="object-changes on npm"/></a>
3535
```bash
36-
npm install --save object-changes@^0.1.0
36+
npm install --save object-changes@^1.0.0
3737
```
3838
<a href="https://yarnpkg.com/package/object-changes"><img src="https://img.shields.io/badge/Yarn-object--changes-2F8CB7?style=flat-square&logo=yarn&logoColor=white" alt="object-changes on Yarn"/></a>
3939
```bash
40-
yarn add object-changes@^0.1.0
40+
yarn add object-changes@^1.0.0
4141
```
4242
<a href="https://jsdelivr.com/package/npm/object-changes/"><img src="https://img.shields.io/badge/jsDelivr-object--changes-orange?style=flat-square&logo=html5&logoColor=white" alt="object-changes on jsDelivr"/></a> <a href="https://unpkg.com/browse/object-changes/"><img src="https://img.shields.io/badge/UNPKG-object--changes-orange?style=flat-square&logo=html5&logoColor=white" alt="object-changes on UNPKG"/></a>
4343
```html
44-
<script src="https://cdn.jsdelivr.net/npm/object-changes@0.1.0/index.js"/>
44+
<script src="https://cdn.jsdelivr.net/npm/object-changes@1.0.0/index.js"/>
4545
```
4646
4747
@@ -54,7 +54,7 @@ Open a browser's JavaScript console and execute:
5454
```javascript
5555
const scriptElement = document.createElement("script");
5656
scriptElement.setAttribute("type", "text/javascript");
57-
scriptElement.setAttribute("src", "https://cdn.jsdelivr.net/npm/object-changes@0.1.0/index.js");
57+
scriptElement.setAttribute("src", "https://cdn.jsdelivr.net/npm/object-changes@1.0.0/index.js");
5858
document.querySelector("head").appendChild(scriptElement);
5959
```
6060

0 commit comments

Comments
 (0)