From 228331c2a19df4caa6171186dd57193662d2e91e Mon Sep 17 00:00:00 2001 From: Daniel Couzens Date: Tue, 13 Aug 2024 09:43:43 +0100 Subject: [PATCH] updates changelog and version cadence --- CHANGELOG.md | 4 ++++ app/lib/version.rb | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b05aad..2d3e912 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Standard Reports UI: change log +## 1.5.3 - 2024-08 + +- (Dan) Styled the help button to match PPD [117](https://github.com/epimorphics/standard-reports-ui/issues/117) + ## 1.5.2 - 2023-11-27 - (Jon) Updated the `lr_common_styles` gem to the latest 1.9.3 patch release. diff --git a/app/lib/version.rb b/app/lib/version.rb index 3fc1fa7..79e1666 100644 --- a/app/lib/version.rb +++ b/app/lib/version.rb @@ -3,7 +3,7 @@ module Version MAJOR = 1 MINOR = 5 - PATCH = 2 + PATCH = 3 SUFFIX = nil VERSION = "#{MAJOR}.#{MINOR}.#{PATCH}#{SUFFIX && ".#{SUFFIX}"}" end