From 4e43c9aae8cd2c0c16f47003d86ec1c7c8497315 Mon Sep 17 00:00:00 2001 From: Cody Horton Date: Mon, 13 Jan 2025 12:06:48 -0600 Subject: [PATCH] Updated app version and history --- Gemfile.lock | 2 +- config/version.rb | 2 +- doc/history | 10 ++++++++++ 3 files changed, 12 insertions(+), 2 deletions(-) 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