diff --git a/.known_good_references b/.known_good_references index 7156c07f77..cd6949bfff 100644 --- a/.known_good_references +++ b/.known_good_references @@ -1,4 +1,4 @@ -/openhab-jruby/5.14 +/openhab-jruby/5.15 /openhab-jruby/main https://bundler.io/ https://bundler.io/guides/bundler_in_a_single_file_ruby_script.html diff --git a/CHANGELOG.md b/CHANGELOG.md index 470c0b8712..78d12d801b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # JRuby openHAB Scripting Change Log +## [v5.15.0](https://github.com/openhab/openhab-jruby/tree/v5.15.0) (2024-01-06) + +### Features + +- Add Enumerable#toggle to complement #on and #off by [@jimtng](https://github.com/jimtng) in [#226](https://github.com/openhab/openhab-jruby/pull/226) + +**Full Changelog**: [v5.14.0...v5.15.0](https://github.com/openhab/openhab-jruby/compare/v5.14.0...v5.15.0) + ## [v5.14.0](https://github.com/openhab/openhab-jruby/tree/v5.14.0) (2024-01-05) ### Features diff --git a/Gemfile.lock b/Gemfile.lock index 3f2c1184c8..42c0e746d1 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -9,7 +9,7 @@ GIT PATH remote: . specs: - openhab-scripting (5.14.0) + openhab-scripting (5.15.0) bundler (~> 2.2) marcel (~> 1.0) method_source (~> 1.0) diff --git a/lib/openhab/dsl/version.rb b/lib/openhab/dsl/version.rb index de80b979a0..e8a55a0ad0 100644 --- a/lib/openhab/dsl/version.rb +++ b/lib/openhab/dsl/version.rb @@ -4,6 +4,6 @@ module OpenHAB module DSL # Version of openHAB helper libraries # @return [String] - VERSION = "5.14.0" + VERSION = "5.15.0" end end diff --git a/templates/default/fulldoc/html/js/app.js b/templates/default/fulldoc/html/js/app.js index 6dd527c7dc..7b2fcb5e40 100644 --- a/templates/default/fulldoc/html/js/app.js +++ b/templates/default/fulldoc/html/js/app.js @@ -211,7 +211,7 @@ function enableHovers() { } function selectVersion() { - if (document.location.pathname.startsWith("/openhab-jruby/5.14/")) { + if (document.location.pathname.startsWith("/openhab-jruby/5.15/")) { $(".version-button.stable").toggleClass("current"); } else if (document.location.pathname.startsWith("/docs/") || document.location.pathname.startsWith("/openhab-jruby/main/") || diff --git a/templates/default/layout/html/versions.erb b/templates/default/layout/html/versions.erb index 1a666b9fd1..6f92a07215 100644 --- a/templates/default/layout/html/versions.erb +++ b/templates/default/layout/html/versions.erb @@ -1,6 +1,6 @@
<% archived_versions = %w[] %>