From e1e450c381e1fac5021a08bdc5f72bbac9cf6038 Mon Sep 17 00:00:00 2001 From: Phill MV Date: Mon, 31 Jul 2023 14:56:18 -0400 Subject: [PATCH] :gem: release 0.23.10 --- CHANGELOG.md | 8 ++++++++ lib/commonmarker/version.rb | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e1cc41a0..2da27c89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [v0.23.10] (2023-07-31) + +- Update GFM release to [`0.29.0.gfm.12`](https://github.com/github/cmark-gfm/releases/tag/0.29.0.gfm.12) and [`0.29.0.gfm.13`](https://github.com/github/cmark-gfm/releases/tag/0.29.0.gfm.13), thereby [fixing a polynomial time complexity security vulnerability](https://github.com/github/cmark-gfm/security/advisories/GHSA-w4qg-3vf7-m9x5). +- Of note to users of this library, GFM releases `0.29.0.gfm.12` and `0.29.0.gfm.13` also: + - Normalized marker row vs. delimiter row nomenclature ([#273](https://github.com/github/cmark-gfm/pull/273)) + - Exposed CMARK_NODE_FOOTNOTE_DEFINITION literal value ([#336](https://github.com/github/cmark-gfm/pull/336)) + + ## [v0.23.4](https://github.com/gjtorikian/commonmarker/tree/v0.23.4) (2022-03-03) [Full Changelog](https://github.com/gjtorikian/commonmarker/compare/v0.23.2...v0.23.4) diff --git a/lib/commonmarker/version.rb b/lib/commonmarker/version.rb index 77032fd8..0c4de08a 100644 --- a/lib/commonmarker/version.rb +++ b/lib/commonmarker/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module CommonMarker - VERSION = "0.23.9" + VERSION = "0.23.10" end