From 121951ba9bc50df1528a30f188cbc8bc8221d499 Mon Sep 17 00:00:00 2001 From: Max Korbel Date: Mon, 30 Dec 2024 16:47:24 -0800 Subject: [PATCH] Preparing to release v0.6.0 (#539) --- .gitignore | 3 ++- .pubignore | 3 ++- CHANGELOG.md | 2 +- lib/src/utilities/config.dart | 2 +- pubspec.yaml | 2 +- 5 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index db1d21b2e..d894aef2c 100644 --- a/.gitignore +++ b/.gitignore @@ -17,8 +17,9 @@ tmp_test/ *.vcd *_fsm.md .vscode/* -devtools_options.yaml +./devtools_options.yaml # Exceptions !.vscode/extensions.json !test/example_icarus_waves.vcd +!test/sv_param_passthrough.sv \ No newline at end of file diff --git a/.pubignore b/.pubignore index 66515b80c..a90684629 100644 --- a/.pubignore +++ b/.pubignore @@ -17,11 +17,12 @@ tmp_test/ *.vcd *_fsm.md .vscode/* -devtools_options.yaml +./devtools_options.yaml # Exceptions !.vscode/extensions.json !test/example_icarus_waves.vcd +!test/sv_param_passthrough.sv # Release with devtools build !extension/devtools/build diff --git a/CHANGELOG.md b/CHANGELOG.md index f8711c4cf..44adf23e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## Next release +## 0.6.0 - Added `LogicNet`, `inOut`s, and `TriStateBuffer` to enable multi-directional wires, ports, and drivers. Includes support for "wire-only" operations supporting multiple drivers. - 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. diff --git a/lib/src/utilities/config.dart b/lib/src/utilities/config.dart index 18f7d3e3a..b2d7a7a66 100644 --- a/lib/src/utilities/config.dart +++ b/lib/src/utilities/config.dart @@ -10,5 +10,5 @@ /// A utility for ROHD configuration file. class Config { /// The version of the ROHD framework. - static const String version = '0.5.3'; + static const String version = '0.6.0'; } diff --git a/pubspec.yaml b/pubspec.yaml index 055106870..d63b8d6b6 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: rohd -version: 0.5.3 +version: 0.6.0 description: The Rapid Open Hardware Development (ROHD) framework, a framework for describing and verifying hardware. homepage: https://intel.github.io/rohd-website repository: https://github.com/intel/rohd