Skip to content

Commit 04080a0

Browse files
authored
Merge pull request #216 from joecrop/rel-0-13-6
prepping release 0.13.6
2 parents 88d3787 + ed9133e commit 04080a0

File tree

3 files changed

+8
-107
lines changed

3 files changed

+8
-107
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ More details can be found on the [Releases](https://github.com/eirikpre/VSCode-S
1010
- 💡 Back-end Language Server for Systemverilog
1111
- 💡 Complete syntax highlighting
1212

13+
### [0.13.6]
14+
15+
- Fix auto-instantiation failing on extra parentheses by `richzwart`
16+
- Added filetype icons inspired by [vscode-material-icon-theme](https://github.com/PKief/vscode-material-icon-theme) by `joecrop`
17+
- Added support for Verilog-A and Verilog-AMS syntax highlighting by `joecrop`
18+
1319
### [0.13.5]
1420

1521
- Improved format command parsing and error handling per issue #170 `joecrop`

README.md

Lines changed: 1 addition & 106 deletions
Original file line numberDiff line numberDiff line change
@@ -187,109 +187,4 @@ npm run compile
187187

188188
## Release Notes
189189

190-
See the [changelog](CHANGELOG.md) for more details
191-
192-
193-
### 0.13.2
194-
195-
- modified formatter command parser to support windows paths by `joecrop`
196-
- module instantiator now detects parameters correctly by `joecrop`
197-
198-
### 0.13.1
199-
200-
- Improved remote ssh performance by `eirikpre`
201-
202-
### 0.13
203-
204-
- input/output/input now have different icons in the outline tree by `joecrop`
205-
- Format module instance and dropdown list of modules for auto-instantiator by `joecrop`
206-
- support more file extensions and no extension in antlr parser by `joecrop`
207-
- Bump minimist from 1.2.5 to 1.2.6 by `dependabot`
208-
- Include indexing docs by `joecrop`
209-
210-
### 0.12.1
211-
212-
- Update VS Code engine to 1.56.0 to support Node.js 14
213-
- Update several dependencies to address CVEs
214-
- Update ESLint to version 8 and implement some suggested fixes
215-
- Update Prettier and apply suggested formatting changes
216-
- Remove React-related ESLint dependencies
217-
- Remove direct dependency on `antlr4` package as it is a submodule of `antlr4ts`
218-
- Remove on Markdown activation
219-
- Rename `.eslintrc` to `.eslintrc.json` to fix ESLint editor integration
220-
- Add `-Xexact-output-dir` to compile command to fix MacOS build
221-
- Update `README.md` with a suggested configuration section and add missing settings
222-
- Enable bracket matching and coloring to function with SystemVerilog textual brackets
223-
- Fix `port-net-parameter` highlighting corner case
224-
- Enhance Github Actions test workflow
225-
- Fix coverage collection
226-
227-
### 0.12
228-
229-
- Implemented 'find references' feature, thanks to `joecrop`
230-
- Ports and parameters are now recognized as symbols, thanks to `joecrop`
231-
- Illegal/reserved words contained with symbols is now supported, thanks to `joecrop`
232-
- Added more consistent syntax highlighting for UDP tables, thanks to `sw23`
233-
- Added support for verible_verilog_lint as a compiler/linter, thanks to `joecrop`
234-
- Fixed 'npm run compile' on MacOS, thanks to `sw23`
235-
- Added 'Contributing' section to documentation, thanks to `gasrodriguez`
236-
237-
### 0.11
238-
239-
- Syntax Highlighting Overhaul, thanks to `jecassis`
240-
- Smaller extension footprint, thanks to `jecassis`
241-
- Support for external formatter, thanks to `jecassis`
242-
- Documentation upgrade, thanks to `jecassis`
243-
- Dev update with ESLint, Prettier and tests update, thanks to `jecassis`
244-
245-
### 0.10
246-
247-
- Folders outside the workspace can now be included with `systemverilog.includeIndexing`
248-
- It now saves the indexed database between runs, allowing quickstart on previous workspaces
249-
250-
### 0.9
251-
252-
- Increased the number of symbols the parser understands.
253-
- Extensive bug squashing
254-
255-
### 0.8
256-
257-
- Compile an opened document using `Verilator` simulator, display errors/warnings as `Diagnostics` in documents, thanks to `oehaddouchi`
258-
- Compile documents on save feature using `Verilator` simulator
259-
- Added output channel `SystemVerilog`
260-
- Added an `LSP`, set it to communicate with the extension's client
261-
- Keep track of the recently used modules in the indexer
262-
- Added diagnostic support for `VCS` compiler
263-
264-
### 0.7
265-
266-
- Instantiate module from already indexed module, thanks to `oehaddouchi`
267-
- Update to documentSymbolProvider
268-
269-
### 0.6
270-
271-
- Stability and performance upgrade
272-
- PCRE Regexes
273-
274-
### 0.5
275-
276-
- HoverProvider added, thanks to `toastedcornflakes`
277-
- Improvements to DocumentSymbolProvider to better support Hover
278-
279-
### 0.4
280-
281-
- Added setting to exclude folders from indexing
282-
283-
### 0.3
284-
285-
- DefinitionProvider fetching from indexed modules implemented
286-
- Indexing is now more safe, and will work for large workspaces
287-
288-
### 0.2
289-
290-
- Alpha 2 release with expanded syntax highlighting and snippets
291-
- Indexing of every module/interface/program/class in workspace
292-
293-
### 0.1
294-
295-
- Alpha 1 release with syntax highlighting, and go to symbols
190+
See the [changelog](CHANGELOG.md)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "systemverilog",
33
"displayName": "SystemVerilog - Language Support",
44
"description": "Language support for Verilog and SystemVerilog.",
5-
"version": "0.13.5",
5+
"version": "0.13.6",
66
"publisher": "eirikpre",
77
"author": {
88
"name": "Eirik Prestegårdshus",

0 commit comments

Comments
 (0)