Skip to content

Commit f644631

Browse files
committed
Reset version to 1.7.0
1 parent 0184b5a commit f644631

File tree

4 files changed

+68
-68
lines changed

4 files changed

+68
-68
lines changed

.editorconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ indent_size = 4
1818
[*.ttl]
1919
indent_size = 4
2020

21-
[*.jsonc]
21+
[*.{json,jsonc}]
2222
indent_size = 4
2323

24-
[*.{json,jsonld}]
24+
[*.jsonld]
2525
indent_size = 2
2626

2727
[*.{xml,svg}]

CHANGES.md

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

33
This list does not include all the tiny changes, bug handling, etc, only the changes in the main features.
44

5-
## Version 1.7.1
5+
## Version 1.7.0
66

77
- The package does not generate RDFa any more. The usage of RDFa in the HTML represented a significant burden on the code itself, and also made the generated HTML messy. All this for no real benefit: RDFa is very rarely used these days. Instead, the JSON-LD and Turtle versions of the vocabulary are linked from the HTML header as alternate representations.
88

deno.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@iherman/yml2vocab",
33
"description": "Generation of vocabulary files starting by YAML",
4-
"version": "1.7.1",
4+
"version": "1.7.0",
55
"homepage": "https://github.com/w3c/yml2vocab",
66
// We do not want to use the npm installation from deno
77
// npm packages used by the code is maintained separately

package.json

Lines changed: 64 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,66 @@
11
{
2-
"name": "yml2vocab",
3-
"version": "1.7.1",
4-
"description": "Generation of vocabulary files starting by YAML",
5-
"homepage": "https://github.com/w3c/yml2vocab",
6-
"repository": {
7-
"type": "git",
8-
"url": "git+https://github.com/w3c/yml2vocab.git"
9-
},
10-
"bugs": {
11-
"url": "https://github.com/w3c/yml2vocab/issues"
12-
},
13-
"files": [
14-
"LICENSE.md",
15-
"README.md",
16-
"CHANGES.md",
17-
"dist/**/*"
18-
],
19-
"main": "dist/index.js",
20-
"types": "dist/index.d.ts",
21-
"bin": {
22-
"yml2vocab": "dist/main.js"
23-
},
24-
"engines": {
25-
"node": ">=21.0.0"
26-
},
27-
"scripts": {
28-
"generate": "ts-node main.ts",
29-
"docs": "typedoc index.ts main.ts lib/*",
30-
"dist": "tsc",
31-
"distribute": "npm run dist && npm run docs",
32-
"test_di": "ts-node main.ts -v example/security.yml -t example/security_template.html -c",
33-
"test_vcdm": "ts-node main.ts -v example/credentials.yml -t example/template.html -c",
34-
"test": "ts-node main.ts -v example/test.yml -t example/test_template.html -c",
35-
"local_test": "ts-node main.ts -v local/tests/test.yml -t local/tests/test_template.html -c",
36-
"local_vcdm": "ts-node main.ts -v local/vcdm/vocabulary.yml -t local/vcdm/template.html -c",
37-
"local_di": "ts-node main.ts -v local/di/vocabulary.yml -t local/di/template.html -c",
38-
"local_sl": "ts-node main.ts -v local/sl/vocabulary.yml -t local/sl/template.html -c",
39-
"local_vcdm_nolink": "ts-node main.ts -v local/tests/vcdm/vocabulary.yml -t local/tests/vcdm/template.html -c",
40-
"local_ident": "ts-node main.ts -v local/tests/identification/vocabulary.yml -t local/tests/identification/template.html -c",
41-
"local_did": "ts-node main.ts -v local/tests/did/vocabulary.yml -t local/tests/did/template.html -c",
42-
"preview_vcdm": "ts-node main.ts -v previews/vcdm/vocabulary.yml -t previews/vcdm/template.html",
43-
"preview_di": "ts-node main.ts -v previews/di/vocabulary.yml -t previews/di/template.html"
44-
},
45-
"author": "Ivan Herman <[email protected]> (https://www.w3.org/People/Ivan/)",
46-
"license": "W3C-20150513",
47-
"dependencies": {
48-
"@exodus/schemasafe": "^1.3.0",
49-
"@types/js-beautify": "^1.14.3",
50-
"commander": "^13.1.0",
51-
"editorconfig": "^3.0.1",
52-
"js-beautify": "^1.15.4",
53-
"jsdom": "^26.0.0",
54-
"yaml": "^2.7.0"
55-
},
56-
"devDependencies": {
57-
"@types/jsdom": "^21.1.7",
58-
"@types/node": "^22.10.10",
59-
"@typescript-eslint/eslint-plugin": "^8.21.0",
60-
"@typescript-eslint/parser": "^8.21.0",
61-
"eslint": "^9.19.0",
62-
"ts-node": "^10.9.2",
63-
"typedoc": "^0.27.6",
64-
"typescript": "^5.7.3"
65-
}
2+
"name": "yml2vocab",
3+
"version": "1.7.0",
4+
"description": "Generation of vocabulary files starting by YAML",
5+
"homepage": "https://github.com/w3c/yml2vocab",
6+
"repository": {
7+
"type": "git",
8+
"url": "git+https://github.com/w3c/yml2vocab.git"
9+
},
10+
"bugs": {
11+
"url": "https://github.com/w3c/yml2vocab/issues"
12+
},
13+
"files": [
14+
"LICENSE.md",
15+
"README.md",
16+
"CHANGES.md",
17+
"dist/**/*"
18+
],
19+
"main": "dist/index.js",
20+
"types": "dist/index.d.ts",
21+
"bin": {
22+
"yml2vocab": "dist/main.js"
23+
},
24+
"engines": {
25+
"node": ">=21.0.0"
26+
},
27+
"scripts": {
28+
"generate": "ts-node main.ts",
29+
"docs": "typedoc index.ts main.ts lib/*",
30+
"dist": "tsc",
31+
"distribute": "npm run dist && npm run docs",
32+
"test_di": "ts-node main.ts -v example/security.yml -t example/security_template.html -c",
33+
"test_vcdm": "ts-node main.ts -v example/credentials.yml -t example/template.html -c",
34+
"test": "ts-node main.ts -v example/test.yml -t example/test_template.html -c",
35+
"local_test": "ts-node main.ts -v local/tests/test.yml -t local/tests/test_template.html -c",
36+
"local_vcdm": "ts-node main.ts -v local/vcdm/vocabulary.yml -t local/vcdm/template.html -c",
37+
"local_di": "ts-node main.ts -v local/di/vocabulary.yml -t local/di/template.html -c",
38+
"local_sl": "ts-node main.ts -v local/sl/vocabulary.yml -t local/sl/template.html -c",
39+
"local_vcdm_nolink": "ts-node main.ts -v local/tests/vcdm/vocabulary.yml -t local/tests/vcdm/template.html -c",
40+
"local_ident": "ts-node main.ts -v local/tests/identification/vocabulary.yml -t local/tests/identification/template.html -c",
41+
"local_did": "ts-node main.ts -v local/tests/did/vocabulary.yml -t local/tests/did/template.html -c",
42+
"preview_vcdm": "ts-node main.ts -v previews/vcdm/vocabulary.yml -t previews/vcdm/template.html",
43+
"preview_di": "ts-node main.ts -v previews/di/vocabulary.yml -t previews/di/template.html"
44+
},
45+
"author": "Ivan Herman <[email protected]> (https://www.w3.org/People/Ivan/)",
46+
"license": "W3C-20150513",
47+
"dependencies": {
48+
"@exodus/schemasafe": "^1.3.0",
49+
"@types/js-beautify": "^1.14.3",
50+
"commander": "^13.1.0",
51+
"editorconfig": "^3.0.1",
52+
"js-beautify": "^1.15.4",
53+
"jsdom": "^26.0.0",
54+
"yaml": "^2.7.0"
55+
},
56+
"devDependencies": {
57+
"@types/jsdom": "^21.1.7",
58+
"@types/node": "^22.10.10",
59+
"@typescript-eslint/eslint-plugin": "^8.21.0",
60+
"@typescript-eslint/parser": "^8.21.0",
61+
"eslint": "^9.19.0",
62+
"ts-node": "^10.9.2",
63+
"typedoc": "^0.27.6",
64+
"typescript": "^5.7.3"
65+
}
6666
}

0 commit comments

Comments
 (0)