diff --git a/Gemfile.lock b/Gemfile.lock index 13f6c7a7..8d46ab5e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -42,7 +42,7 @@ GIT PATH remote: . specs: - origen (0.60.17) + origen (0.60.18) activesupport (~> 4.1) bundler (> 1.7) coderay (~> 1.1) diff --git a/config/version.rb b/config/version.rb index 509e51f1..daa46a55 100644 --- a/config/version.rb +++ b/config/version.rb @@ -1,7 +1,7 @@ module Origen MAJOR = 0 MINOR = 60 - BUGFIX = 17 + BUGFIX = 18 DEV = nil VERSION = [MAJOR, MINOR, BUGFIX].join(".") + (DEV ? ".pre#{DEV}" : '') end diff --git a/doc/history b/doc/history index e53c08e6..20fc2945 100644 --- a/doc/history +++ b/doc/history @@ -1,3 +1,13 @@ + +

Tag: v0.60.18

+ +##### Branch: 'master' + +##### by Cody Horton on 13-Jan-2025 12:06PM + + +* `sub_block(..., override: true)` now correctly removes the replaced sub block object from the list of listeners +

Tag: v0.60.17