uuid-version 1.1.0 → 1.2.0

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.
@@ -0,0 +1,16 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: "npm"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "daily"
7
+ cooldown:
8
+ default-days: 3
9
+ assignees:
10
+ - "0xflotus"
11
+ - package-ecosystem: "github-actions"
12
+ directory: "/"
13
+ schedule:
14
+ interval: "daily"
15
+ assignees:
16
+ - "0xflotus"
@@ -0,0 +1,56 @@
1
+ name: Test
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
+ branches:
9
+ - main
10
+ paths:
11
+ - "**.js"
12
+ - ".github/workflows/*.yml"
13
+ - "package.json"
14
+
15
+ concurrency:
16
+ group: ${{ github.ref }}
17
+ cancel-in-progress: true
18
+
19
+ jobs:
20
+ test:
21
+ name: Testing
22
+ strategy:
23
+ fail-fast: true
24
+ matrix:
25
+ version: [22, 23, 24, 25, 26, latest]
26
+ os:
27
+ [
28
+ ubuntu-latest,
29
+ ubuntu-22.04,
30
+ ubuntu-24.04,
31
+ ubuntu-26.04,
32
+ ubuntu-24.04-arm,
33
+ ubuntu-26.04-arm,
34
+ macos-15-intel,
35
+ macos-26-intel,
36
+ macos-14,
37
+ macos-15,
38
+ macos-26,
39
+ macos-latest,
40
+ ]
41
+ include:
42
+ - os: ubuntu-latest
43
+ node-version: 21
44
+ - os: macos-latest
45
+ node-version: 21
46
+ runs-on: ${{ matrix.os }}
47
+ steps:
48
+ - uses: actions/checkout@v7
49
+ - name: Setup Node.js ${{ matrix.node-version }}
50
+ uses: actions/setup-node@v7
51
+ with:
52
+ node-version: ${{ matrix.node-version }}
53
+ cache: "npm"
54
+ - run: |
55
+ npm ci
56
+ npm run test
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uuid-version",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "description": "This package helps you to recognize the version of a given uuid",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -17,6 +17,6 @@
17
17
  "author": "0xflotus",
18
18
  "license": "MIT",
19
19
  "devDependencies": {
20
- "uuid": "^11.1.0"
20
+ "uuid": "14.0.2"
21
21
  }
22
22
  }