From 3d344cd7c35b8a057f3390dc0ec46e2836fc2b07 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Mon, 31 May 2021 11:16:27 -0400 Subject: [PATCH] update CHANGELOG and version bump to v2.6.1 --- CHANGELOG.md | 19 ++++++++++++++----- lib/mini_portile2/version.rb | 2 +- 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fec923b..4b848a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,19 +1,28 @@ ## mini_portile changelog -### 2.6.0 / 2021-05-31 +### 2.6.1 / 2021-05-31 -### Added +#### Dependencies -Recipes may build against a local directory by specifying `source_directory` instead of `files`. In -particular, this may be useful for debugging problems with the upstream dependency (e.g., use `git -bisect` in a local clone) or for continuous integration with upstream HEAD. +Make `net-ftp` an optional dependency, since requiring it as a hard dependency in v2.5.2 caused warnings to be emitted by Ruby 2.7 and earlier. A warning message is emitted if FTP functionality is called and `net-ftp` isn't available; this should only happen in Ruby 3.1 and later. ### 2.5.3 / 2021-05-31 +#### Dependencies + Make `net-ftp` an optional dependency, since requiring it as a hard dependency in v2.5.2 caused warnings to be emitted by Ruby 2.7 and earlier. A warning message is emitted if FTP functionality is called and `net-ftp` isn't available; this should only happen in Ruby 3.1 and later. +### 2.6.0 / 2021-05-31 + +### Added + +Recipes may build against a local directory by specifying `source_directory` instead of `files`. In +particular, this may be useful for debugging problems with the upstream dependency (e.g., use `git +bisect` in a local clone) or for continuous integration with upstream HEAD. + + ### 2.5.2 / 2021-05-28 #### Dependencies diff --git a/lib/mini_portile2/version.rb b/lib/mini_portile2/version.rb index a2344eb..49dbb68 100644 --- a/lib/mini_portile2/version.rb +++ b/lib/mini_portile2/version.rb @@ -1,3 +1,3 @@ class MiniPortile - VERSION = "2.6.0" + VERSION = "2.6.1" end