diff --git a/CHANGELOG.md b/CHANGELOG.md index d6343ba08..4d29a4dca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.6.8 + +- Fixed a bug where constant assignments or tie-offs could be lost in certain rare scenarios in generated outputs (). +- Fixed a bug where an unnamed connection between an output and inOut could be incorrectly pruned during SystemVerilog generation, causing confusing error messages (). +- Fixed typos in various documentation, comments, tutorials, etc. (). + ## 0.6.7 - Significantly improved and simplified generated outputs (including SystemVerilog) by reducing unnecessary signal slicing and swizzling operations and leaving unconnected ports on module instantiations empty (). diff --git a/README.md b/README.md index 823200b36..b812acc2f 100644 --- a/README.md +++ b/README.md @@ -69,5 +69,5 @@ ROHD is under active development. If you're interested in contributing, have fe ---------------- -Copyright (C) 2021-2025 Intel Corporation +Copyright (C) 2021-2026 Intel Corporation SPDX-License-Identifier: BSD-3-Clause diff --git a/lib/src/utilities/config.dart b/lib/src/utilities/config.dart index 93d7255a3..4aa2ca8c6 100644 --- a/lib/src/utilities/config.dart +++ b/lib/src/utilities/config.dart @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2025 Intel Corporation +// Copyright (C) 2022-2026 Intel Corporation // SPDX-License-Identifier: BSD-3-Clause // // 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.6.7'; + static const String version = '0.6.8'; } diff --git a/pubspec.yaml b/pubspec.yaml index f9672b2c4..4882d28b7 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: rohd -version: 0.6.7 +version: 0.6.8 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