Skip to content

Commit ac10ef6

Browse files
committed
1.0.0 release
1 parent 117ebad commit ac10ef6

File tree

3 files changed

+30
-23
lines changed

3 files changed

+30
-23
lines changed

CHANGELOG.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
# Change Log
22

3-
## [0.0.2] - 2017-02-14
4-
- Updated CHANGELOG.md
5-
- Created GitHub Repository
6-
7-
## [0.0.1] - 2017-02-14
8-
- Initial release
3+
## [1.0.0] - 2017-02-14
4+
- Initial Release

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ Syntax highlighting for `.gitconfig`, `.gitattributes`, and `.gitmodules` files.
1111

1212
See `CHANGELOG.md` for more in-depth notes.
1313

14-
### `0.0.2`
15-
16-
Adds GitHub repository and `CHANGELOG.md`
17-
18-
### `0.0.1`
14+
### `1.0.0`
1915

2016
Initial release

package.json

Lines changed: 27 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,40 @@
22
"name": "gitconfig",
33
"displayName": "Gitconfig Syntax",
44
"description": "Adds syntax highlighting support for Git config files",
5-
"version": "0.0.1",
5+
"version": "1.0.0",
66
"publisher": "sidneys1",
7+
"repository": {
8+
"type": "git",
9+
"url": "https://github.com/Sidneys1/GitConfigVSCode.git"
10+
},
711
"engines": {
812
"vscode": "^1.5.0"
913
},
1014
"categories": [
1115
"Languages"
1216
],
1317
"contributes": {
14-
"languages": [{
15-
"id": "gitconfig",
16-
"aliases": ["Git Config", "gitconfig"],
17-
"extensions": [".gitconfig",".gitmodules",".gitattributes"],
18-
"configuration": "./language-configuration.json"
19-
}],
20-
"grammars": [{
21-
"language": "gitconfig",
22-
"scopeName": "text.gitconfig",
23-
"path": "./syntaxes/Gitconfig.tmLanguage"
24-
}]
18+
"languages": [
19+
{
20+
"id": "gitconfig",
21+
"aliases": [
22+
"Git Config",
23+
"gitconfig"
24+
],
25+
"extensions": [
26+
".gitconfig",
27+
".gitmodules",
28+
".gitattributes"
29+
],
30+
"configuration": "./language-configuration.json"
31+
}
32+
],
33+
"grammars": [
34+
{
35+
"language": "gitconfig",
36+
"scopeName": "text.gitconfig",
37+
"path": "./syntaxes/Gitconfig.tmLanguage"
38+
}
39+
]
2540
}
2641
}

0 commit comments

Comments
 (0)