Skip to content

Commit

Permalink
chore(release): 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sam bacha committed Apr 14, 2021
1 parent aec374a commit c8c2741
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 13 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### 0.0.2 (2021-04-14)
36 changes: 23 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,35 @@
"description": "solidity syntax highlighting, thats it",
"publisher": "ContractShark",
"license": "MIT",
"repository": "git@github.com:contractshark/vscode-extenstion.git",
"version": "0.0.1",
"repository": "git@github.com:contractshark/vscode-extenstion.git",
"version": "0.0.2",
"engines": {
"vscode": "^1.55.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "solidity",
"aliases": ["Solidity", "solidity"],
"extensions": [".sol",".solidity"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "solidity",
"scopeName": "source.solidity",
"path": "./syntaxes/solidity.tmLanguage.json"
}]
"languages": [
{
"id": "solidity",
"aliases": [
"Solidity",
"solidity"
],
"extensions": [
".sol",
".solidity"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "solidity",
"scopeName": "source.solidity",
"path": "./syntaxes/solidity.tmLanguage.json"
}
]
}
}

0 comments on commit c8c2741

Please sign in to comment.