From e8cfc31ea0cab7a201337dd730510e300ea7cd5e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Sep 2024 00:46:57 +0000 Subject: [PATCH] v5.29.0 --- .known_good_references | 2 +- CHANGELOG.md | 14 ++++++++++++++ Gemfile.lock | 2 +- Gemfile.ruby-2.6.lock | 2 +- lib/openhab/dsl/version.rb | 2 +- templates/default/fulldoc/html/js/app.js | 2 +- templates/default/layout/html/versions.erb | 2 +- 7 files changed, 20 insertions(+), 6 deletions(-) diff --git a/.known_good_references b/.known_good_references index b1bae2564..8b9a3921c 100644 --- a/.known_good_references +++ b/.known_good_references @@ -1,4 +1,4 @@ -/openhab-jruby/5.28 +/openhab-jruby/5.29 /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 62c87263c..627a72d69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # JRuby openHAB Scripting Change Log +## [v5.29.0](https://github.com/openhab/openhab-jruby/tree/v5.29.0) (2024-09-19) + +### Features + +- Add `#time_only?` and `#offset` to TimerEvent by [@jimtng](https://github.com/jimtng) in [#333](https://github.com/openhab/openhab-jruby/pull/333) +- Add `#yesterday?`, `#today?`, and `#tomorrow?` to ZonedDateTime, Date, and Time classes. by [@jimtng](https://github.com/jimtng) in [#341](https://github.com/openhab/openhab-jruby/pull/341) +- Make working with Instant easier by [@jimtng](https://github.com/jimtng) in [#338](https://github.com/openhab/openhab-jruby/pull/338) + +### Bug Fixes + +- Fix timed command expire by [@jimtng](https://github.com/jimtng) in [#337](https://github.com/openhab/openhab-jruby/pull/337) + +**Full Changelog**: [v5.28.0...v5.29.0](https://github.com/openhab/openhab-jruby/compare/v5.28.0...v5.29.0) + ## [v5.28.0](https://github.com/openhab/openhab-jruby/tree/v5.28.0) (2024-09-15) ### Features diff --git a/Gemfile.lock b/Gemfile.lock index 5d08ffb5e..16bf4178d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -9,7 +9,7 @@ GIT PATH remote: . specs: - openhab-scripting (5.28.0) + openhab-scripting (5.29.0) bundler (~> 2.2) marcel (~> 1.0) method_source (~> 1.0) diff --git a/Gemfile.ruby-2.6.lock b/Gemfile.ruby-2.6.lock index 1a6904e78..464bcf381 100644 --- a/Gemfile.ruby-2.6.lock +++ b/Gemfile.ruby-2.6.lock @@ -9,7 +9,7 @@ GIT PATH remote: . specs: - openhab-scripting (5.28.0) + openhab-scripting (5.29.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 4a84d7293..1b719d1bc 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.28.0" + VERSION = "5.29.0" end end diff --git a/templates/default/fulldoc/html/js/app.js b/templates/default/fulldoc/html/js/app.js index 8433cafb1..52b0c5736 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.28/")) { + if (document.location.pathname.startsWith("/openhab-jruby/5.29/")) { $(".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 ad951bcea..82b75cf42 100644 --- a/templates/default/layout/html/versions.erb +++ b/templates/default/layout/html/versions.erb @@ -1,6 +1,6 @@