From d149511c11ebf4be1f6777e60790ed19cec1be3e Mon Sep 17 00:00:00 2001 From: Andrew Janke Date: Mon, 8 Jan 2024 01:36:54 -0500 Subject: [PATCH] open development for next release (v0.10.2.wip) --- CHANGELOG.md | 4 ++++ Gemfile.lock | 2 +- doc-project/Developer-Guide.md | 2 +- lib/ronn.rb | 2 +- man/ronn-format.7 | 6 +++--- man/ronn.1 | 6 +++--- ronn-ng.gemspec | 2 +- 7 files changed, 14 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b7a438d..c220012 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Ronn-NG CHANGELOG +## 0.10.2 (unreleased) + +Nothing here yet. + ## 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. diff --git a/Gemfile.lock b/Gemfile.lock index 5332aca..2c729bb 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - ronn-ng (0.10.1) + ronn-ng (0.10.2.wip) kramdown (~> 2, >= 2.1) kramdown-parser-gfm (~> 1, >= 1.0.1) mustache (~> 1) diff --git a/doc-project/Developer-Guide.md b/doc-project/Developer-Guide.md index d5435f0..fd3c367 100644 --- a/doc-project/Developer-Guide.md +++ b/doc-project/Developer-Guide.md @@ -31,7 +31,7 @@ After the release, start development on the next release: * Regenerate the man pages again * `bundle exec rake man` * Commit and push - * Use commit message like "open development for next release" + * Use commit message like "open development for next release (v0.x.y)" TODO: Add instructions for prerelease/beta releases. Include a process for making a prerelease ronn-ng formula in our Homebrew tap. diff --git a/lib/ronn.rb b/lib/ronn.rb index 18c76b6..d493af6 100644 --- a/lib/ronn.rb +++ b/lib/ronn.rb @@ -40,6 +40,6 @@ def self.revision end # value generated by: rake rev - REV = '0.10.1'.freeze + REV = '0.10.2.wip'.freeze VERSION = version end diff --git a/man/ronn-format.7 b/man/ronn-format.7 index aab199e..8984cec 100644 --- a/man/ronn-format.7 +++ b/man/ronn-format.7 @@ -1,6 +1,6 @@ -.\" generated with Ronn-NG/v0.10.1 -.\" http://github.com/apjanke/ronn-ng/tree/0.10.1 -.TH "RONN\-FORMAT" "7" "January 2024" "Ronn-NG 0.10.1" "Ronn Manual" +.\" generated with Ronn-NG/v0.10.2 +.\" http://github.com/apjanke/ronn-ng/tree/0.10.2.wip +.TH "RONN\-FORMAT" "7" "January 2024" "Ronn-NG 0.10.2.wip" "Ronn Manual" .SH "NAME" \fBronn\-format\fR \- manual authoring format based on Markdown .SH "SYNOPSIS" diff --git a/man/ronn.1 b/man/ronn.1 index cf3a4f1..6b184c6 100644 --- a/man/ronn.1 +++ b/man/ronn.1 @@ -1,6 +1,6 @@ -.\" generated with Ronn-NG/v0.10.1 -.\" http://github.com/apjanke/ronn-ng/tree/0.10.1 -.TH "RONN" "1" "January 2024" "Ronn-NG 0.10.1" "Ronn Manual" +.\" generated with Ronn-NG/v0.10.2 +.\" http://github.com/apjanke/ronn-ng/tree/0.10.2.wip +.TH "RONN" "1" "January 2024" "Ronn-NG 0.10.2.wip" "Ronn Manual" .SH "NAME" \fBronn\fR \- convert markdown files to manpages .SH "SYNOPSIS" diff --git a/ronn-ng.gemspec b/ronn-ng.gemspec index 56e269b..6cd8478 100644 --- a/ronn-ng.gemspec +++ b/ronn-ng.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'ronn-ng' - s.version = '0.10.1' + s.version = '0.10.2.wip' # We target Ruby 2.7+ for test & deploy, plus nokogiri 1.14.3+ need Ruby 2.7 s.required_ruby_version = '>= 2.7'