From 85d933a5be5f720330b4ecc97027373b976b1761 Mon Sep 17 00:00:00 2001 From: Andrew Janke Date: Thu, 4 Jan 2024 01:40:15 -0500 Subject: [PATCH] doc: add relaxed-deps item to changelog, fix tap name in Distros --- CHANGELOG.md | 1 + Gemfile.lock | 23 ++++++++++++++++++----- doc-project/Distros and Packaging.md | 4 ++-- 3 files changed, 21 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d41f39b..3a63c30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ Note: 0.10.1 is the first 0.10.x release, because Ronn-NG 0.10.0 does not exist. ### Bug Fixes +* Relaxed and fixed dependency versions ([#108](https://github.com/apjanke/ronn-ng/issues/108)) * Revert `\[ci]` back to `\(bu)` ([#51](https://github.com/apjanke/ronn-ng/pull/51)) * Fix single-quote escaping ([#55](https://github.com/apjanke/ronn-ng/issues/55)) * Elide HTML comments when producing roff output ([#65](https://github.com/apjanke/ronn-ng/issues/65)) diff --git a/Gemfile.lock b/Gemfile.lock index 85aa9b1..2fe3b3b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -18,12 +18,20 @@ GEM kramdown-parser-gfm (1.1.0) kramdown (~> 2.0) language_server-protocol (3.17.0.3) - mini_portile2 (2.8.5) mustache (1.1.1) mustermann (3.0.0) ruby2_keywords (~> 0.0.1) - nokogiri (1.15.5) - mini_portile2 (~> 2.8.2) + nokogiri (1.16.0-aarch64-linux) + racc (~> 1.4) + nokogiri (1.16.0-arm-linux) + racc (~> 1.4) + nokogiri (1.16.0-arm64-darwin) + racc (~> 1.4) + nokogiri (1.16.0-x86-linux) + racc (~> 1.4) + nokogiri (1.16.0-x86_64-darwin) + racc (~> 1.4) + nokogiri (1.16.0-x86_64-linux) racc (~> 1.4) parallel (1.24.0) parser (3.2.2.4) @@ -65,7 +73,12 @@ GEM unicode-display_width (2.5.0) PLATFORMS - ruby + aarch64-linux + arm-linux + arm64-darwin + x86-linux + x86_64-darwin + x86_64-linux DEPENDENCIES rack (>= 2.2.3) @@ -76,4 +89,4 @@ DEPENDENCIES test-unit (>= 3.2.7) BUNDLED WITH - 2.1.4 + 2.5.3 diff --git a/doc-project/Distros and Packaging.md b/doc-project/Distros and Packaging.md index 6a7115c..def508e 100644 --- a/doc-project/Distros and Packaging.md +++ b/doc-project/Distros and Packaging.md @@ -77,12 +77,12 @@ MacPorts provides subports for different Ruby versions. Our tight dependency ver ### Homebrew -* Our Tap Formula: [ronn-ng/ronn-ng](https://github.com/apjanke/homebrew-ronn-ng) +* Our Tap Formula: [apjanke/ronn-ng](https://github.com/apjanke/homebrew-ronn-ng) * Core Formula (clasic Ronn, not Ronn-NG): [ronn.rb](https://github.com/Homebrew/homebrew-core/blob/master/Formula/r/ronn.rb) Homebrew still uses the original Ronn, not Ronn-NG. As of 2024-01, they're on Ronn 0.7.3. -We provide a [custom ronn-ng Tap](https://github.com/apjanke/homebrew-ronn-ng) with formulae for installing Ronn-NG with brew. Users need to "tap" it first, and can then do `brew install ronn-ng`. +We provide a [custom apjanke/ronn-ng Tap](https://github.com/apjanke/homebrew-ronn-ng) with formulae for installing Ronn-NG with brew. Users need to "tap" it first (`brew tap apjanke/ronn-ng`), and can then do `brew install ronn-ng`. We do not actively test our custom Homebrew formula as part of our development and release process. We should probably start doing so.