From 7d7ac5fcf5c0d0bb2c09bc57cf7be1508912912f Mon Sep 17 00:00:00 2001 From: Kevin Menard Date: Thu, 21 Mar 2024 17:07:06 -0400 Subject: [PATCH] Version 0.16 --- CHANGELOG.md | 10 ++++++++++ lib/seafoam/version.rb | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ffec0df..de5a2ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,15 @@ New Features: Bug Fixes: +Changes: + + +# 0.16 + +New Features: + +Bug Fixes: + * Fixed an invalid method call in `bgv2json` (#79, @nirvdrum). * Fixed a character escape issue with the Mermaid formatter that could result in invalid syntax (#87, @nirvdrum). @@ -11,6 +20,7 @@ Changes: * Support running with GraalVM 24.0+ (#86, @nirvdrum). + # 0.15 New Features: diff --git a/lib/seafoam/version.rb b/lib/seafoam/version.rb index 28b109c..40cbe3d 100644 --- a/lib/seafoam/version.rb +++ b/lib/seafoam/version.rb @@ -2,6 +2,6 @@ module Seafoam MAJOR_VERSION = 0 - MINOR_VERSION = 15 + MINOR_VERSION = 16 VERSION = "#{MAJOR_VERSION}.#{MINOR_VERSION}" end