From ab53b5d04e06b4d52704b5704d5ac210b8a95d58 Mon Sep 17 00:00:00 2001 From: "Garen J. Torikian" Date: Mon, 25 Nov 2024 17:46:14 -0500 Subject: [PATCH] Release v2.0.0 This is a major release in the sense that there's a breaking API change, but not in the sense that anything earth-shatteringly urgent has occurred. In certain situations, user-provided options were not being merged correctly. This meant that default config values were being ignored erroneously. This was a bug, which has been fixed. Unfortunately, it's possible that downstream projects were relying on the old, broken behavior, so a simple patch release wouldn't do. If you're _not_ passing any options to `to_html` and everything works fine for you, than this should be an upgrade without side-effects. If you _are_ passing options to `to_html` (i.e. overridding the defaults), then consult the README for a list of options and their default values. Make sure that the default values given to `to_html` is acceptable to your project! --- lib/commonmarker/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/commonmarker/version.rb b/lib/commonmarker/version.rb index 362ad9e5..7bdc3a25 100644 --- a/lib/commonmarker/version.rb +++ b/lib/commonmarker/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Commonmarker - VERSION = "1.1.5" + VERSION = "2.0.0" end