diff --git a/CHANGELOG.md b/CHANGELOG.md index 111df7b68..b710a01ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.6.3 + +- Fixed a bug where `withSet` on `LogicStructure`s could sometimes attempt to access the wrong range, causing unexpected exceptions (). +- Fixed a bug where `flop` and `FlipFlop` would generate SystemVerilog with an asynchronous reset even if `asyncReset` was set to `false` (). + ## 0.6.2 - Changed addition syntax for generated SystemVerilog to be prettier, while remaining lint-clean (). diff --git a/lib/src/utilities/config.dart b/lib/src/utilities/config.dart index 2cd5e4d8b..e743da190 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.6.2'; + static const String version = '0.6.3'; } diff --git a/pubspec.yaml b/pubspec.yaml index b97bea332..95e30218f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: rohd -version: 0.6.2 +version: 0.6.3 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