From aac730a7f3dd2737f388dcc67c9b90e7923ac86d Mon Sep 17 00:00:00 2001 From: Brett Terpstra Date: Fri, 15 Dec 2023 08:42:31 -0600 Subject: [PATCH] 2.1.29 #### IMPROVED - More code cleanup, help output improvements #### FIXED - Line breaks in help output - This release should fix an error on Ruby 2.7 in string.rb --- CHANGELOG.md | 5 +++++ lib/mdless/version.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1bcefed..03fbf3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ 2.1.26 +2.1.29 +: More code cleanup, help output improvements +: Line breaks in help output +: This release should fix an error on Ruby 2.7 in string.rb + 2.1.28 : Default to 0 width, which makes the width the column width of the terminal : Don't save a --width setting to config, require that to be manually updated if desired diff --git a/lib/mdless/version.rb b/lib/mdless/version.rb index d7f188a..89c7525 100644 --- a/lib/mdless/version.rb +++ b/lib/mdless/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module CLIMarkdown - VERSION = '2.1.28' + VERSION = '2.1.29' end