Skip to content

Commit

Permalink
[rel] v0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
apjanke committed Jan 8, 2024
1 parent 80a3d67 commit bc667fe
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Ronn-NG CHANGELOG

## 0.10.1 (unreleased)
## 0.10.1 (2024-01-08)

This release is focused on bug fixes and updating library dependencies, to get Ronn-NG building and working correctly on recent Linux and macOS releases.

Expand All @@ -13,7 +13,7 @@ Note: 0.10.1 is the first 0.10.x release, because Ronn-NG 0.10.0 does not exist.
* doc: Reformat Changelog to match common gem and keep-a-changelog conventions
* NOTE: Renamed `CHANGES` to `CHANGELOG.md`. Packagers will need to update specs.
* Bump Ruby to 2.7, gem deps to latest minor versions
* Tweak `ronn --version` output: remove GitHub URL and format it "ronn <ver> (Ronn-NG)"
* Tweak `ronn --version` output: remove GitHub URL and format it as "ronn \<ver\> (Ronn-NG)"

### Bug Fixes

Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
ronn-ng (0.10.1.pre6)
ronn-ng (0.10.1)
kramdown (~> 2, >= 2.1)
kramdown-parser-gfm (~> 1, >= 1.0.1)
mustache (~> 1)
Expand Down
3 changes: 3 additions & 0 deletions doc-project/Developer-Guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
1. Update `CHANGELOG.md` with the release date
1. Regenerate the man pages with `bundle exec rake man`
1. Run the tests one last time! `bundle exec rake test`
1. Test building the gem and then toss it
1. `gem build ronn-ng.gemspec`
1. `rm ronn-ng-*.gem`
1. Commit the updated files
1. Commit message format: "[rel] vX.Y.Z"
1. Tag the release: `git tag vX.Y.Z`
Expand Down
2 changes: 1 addition & 1 deletion lib/ronn.rb
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ def self.revision
end

# value generated by: rake rev
REV = '0.10.1.pre6'.freeze
REV = '0.10.1'.freeze
VERSION = version
end
4 changes: 2 additions & 2 deletions man/ronn-format.7
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" generated with Ronn-NG/v0.10.1
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1.pre6
.TH "RONN\-FORMAT" "7" "January 2024" "Ronn-NG 0.10.1.pre6" "Ronn Manual"
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
.TH "RONN\-FORMAT" "7" "January 2024" "Ronn-NG 0.10.1" "Ronn Manual"
.SH "NAME"
\fBronn\-format\fR \- manual authoring format based on Markdown
.SH "SYNOPSIS"
Expand Down
4 changes: 2 additions & 2 deletions man/ronn.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" generated with Ronn-NG/v0.10.1
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1.pre6
.TH "RONN" "1" "January 2024" "Ronn-NG 0.10.1.pre6" "Ronn Manual"
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
.TH "RONN" "1" "January 2024" "Ronn-NG 0.10.1" "Ronn Manual"
.SH "NAME"
\fBronn\fR \- convert markdown files to manpages
.SH "SYNOPSIS"
Expand Down
2 changes: 1 addition & 1 deletion ronn-ng.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'ronn-ng'
s.version = '0.10.1.pre6'
s.version = '0.10.1'
# We target Ruby 2.7+ for test & deploy, plus nokogiri 1.14.3+ need Ruby 2.7
s.required_ruby_version = '>= 2.7'

Expand Down

0 comments on commit bc667fe

Please sign in to comment.