From 2cf78d861bc2f778d21a2e8593041ad68d6a2f35 Mon Sep 17 00:00:00 2001 From: Brett Terpstra Date: Sun, 26 Nov 2023 17:23:42 -0600 Subject: [PATCH] Version bump --- CHANGELOG.md | 9 +++++++++ lib/mdless/version.rb | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad23ef2..7d2a98d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +2.0.18 +: Better handling of default options set in config +: More expansive detection of screen width, no longer just dependent on `tput` being available +: Only extend borders and backgrounds on code blocks to the length of the longest line +: Include the language in the top border of code blocks, if available +: Validate themes and lexers using `pygmentize` output, with fallbacks +: If width specified in config is greater than display columns, fall back to display columns as max width +: Metadata (MMD/YAML) handling on TaskPaper files + 2.0.17 : Re-order command line options for more readable help output (`mdless -h`) diff --git a/lib/mdless/version.rb b/lib/mdless/version.rb index 5e60c10..cd93576 100644 --- a/lib/mdless/version.rb +++ b/lib/mdless/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module CLIMarkdown - VERSION = '2.0.17' + VERSION = '2.0.18' end