diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 88896d0120..e78787dad0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,10 @@ Release Notes and Change Log ============================ +1.15.1 (January 31, 2023) +^^^^^^^^^^^^^^^^^^^^^^^^^ +* Ruby 3.2.0 now supported. This fixes error 'undefined method exists? for File' '(`#1981`_, `#1988`_; Nicholas Hubbard, romulasry) + 1.15.0 (November 13, 2022) ^^^^^^^^^^^^^^^^^^^^^^^^^^ * New flag ``--fpm-options-file path/to/file`` which allows you to specify additional fpm flags in an external file of your choosing. (`#1905`_, `#1902`_, `#1827`_; Jordan Sissel, Will Furnell, hjpotter92) diff --git a/docs/changelog_links.rst b/docs/changelog_links.rst index 8c103fc649..9a1155f677 100644 --- a/docs/changelog_links.rst +++ b/docs/changelog_links.rst @@ -205,6 +205,8 @@ .. _#1955: https://github.com/jordansissel/fpm/issues/1955 .. _#1959: https://github.com/jordansissel/fpm/issues/1959 .. _#196: https://github.com/jordansissel/fpm/issues/196 +.. _#1981: https://github.com/jordansissel/fpm/issues/1981 +.. _#1988: https://github.com/jordansissel/fpm/issues/1988 .. _#198: https://github.com/jordansissel/fpm/issues/198 .. _#202: https://github.com/jordansissel/fpm/issues/202 .. _#204: https://github.com/jordansissel/fpm/issues/204 diff --git a/lib/fpm/version.rb b/lib/fpm/version.rb index 999681ef82..fa9cb278e8 100644 --- a/lib/fpm/version.rb +++ b/lib/fpm/version.rb @@ -1,3 +1,3 @@ module FPM - VERSION = "1.15.0" + VERSION = "1.15.1" end