human-ids 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +5 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,16 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ ## [Unreleased]
6
+
7
+ ## [1.0.1] - 2023-07-07
8
+
9
+ ### Added
10
+ - Added Changelog
11
+ - Added gitignore and git link in package.json
12
+
13
+ ## [1.0.0] - 2023-07-07
14
+
15
+ ### Added
16
+ - A library to generate human-readable IDs.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "human-ids",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A library to generate human readable IDs",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -20,5 +20,9 @@
20
20
  "devDependencies": {
21
21
  "jest": "^29.6.1",
22
22
  "jest-html-reporter": "^3.10.1"
23
+ },
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "https://github.com/jcmujica/human-ids"
23
27
  }
24
28
  }