Skip to content

Commit

Permalink
doc: add relaxed-deps item to changelog, fix tap name in Distros
Browse files Browse the repository at this point in the history
  • Loading branch information
apjanke committed Jan 4, 2024
1 parent c7d8a38 commit 85d933a
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
23 changes: 18 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand All @@ -76,4 +89,4 @@ DEPENDENCIES
test-unit (>= 3.2.7)

BUNDLED WITH
2.1.4
2.5.3
4 changes: 2 additions & 2 deletions doc-project/Distros and Packaging.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit 85d933a

Please sign in to comment.