Skip to content

Commit 121951b

Browse files
authored
Preparing to release v0.6.0 (#539)
1 parent 8cd55f0 commit 121951b

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ tmp_test/
1717
*.vcd
1818
*_fsm.md
1919
.vscode/*
20-
devtools_options.yaml
20+
./devtools_options.yaml
2121

2222
# Exceptions
2323
!.vscode/extensions.json
2424
!test/example_icarus_waves.vcd
25+
!test/sv_param_passthrough.sv

.pubignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,12 @@ tmp_test/
1717
*.vcd
1818
*_fsm.md
1919
.vscode/*
20-
devtools_options.yaml
20+
./devtools_options.yaml
2121

2222
# Exceptions
2323
!.vscode/extensions.json
2424
!test/example_icarus_waves.vcd
25+
!test/sv_param_passthrough.sv
2526

2627
# Release with devtools build
2728
!extension/devtools/build

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Next release
1+
## 0.6.0
22

33
- Added `LogicNet`, `inOut`s, and `TriStateBuffer` to enable multi-directional wires, ports, and drivers. Includes support for "wire-only" operations supporting multiple drivers.
44
- Deprecated `CustomSystemVerilog` in favor of `SystemVerilog`, which has similar functionality but supports `inOut` ports, and collapses all ports into a single `ports` argument, as well as some other new features like custom definitions and parameter passthroughs.

lib/src/utilities/config.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
/// A utility for ROHD configuration file.
1111
class Config {
1212
/// The version of the ROHD framework.
13-
static const String version = '0.5.3';
13+
static const String version = '0.6.0';
1414
}

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: rohd
2-
version: 0.5.3
2+
version: 0.6.0
33
description: The Rapid Open Hardware Development (ROHD) framework, a framework for describing and verifying hardware.
44
homepage: https://intel.github.io/rohd-website
55
repository: https://github.com/intel/rohd

0 commit comments

Comments
 (0)