From 00d283bc0049a49019985e3cda3f6db8a9ee051a Mon Sep 17 00:00:00 2001 From: "Jon R. Humphrey" Date: Mon, 27 Nov 2023 11:01:14 +0000 Subject: [PATCH 1/3] build: update `lr_common_styles` gem version Updated the `lr_common_styles` gem to the latest 1.9.3 patch release. --- Gemfile | 4 ++-- Gemfile.lock | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Gemfile b/Gemfile index 4c2613b..14c5606 100644 --- a/Gemfile +++ b/Gemfile @@ -74,12 +74,12 @@ gem 'yajl-ruby', require: 'yajl' # ! These "local" paths do not work with a docker image - use the repo instead # gem 'data_services_api', '~> 1.3.3', path: '~/Epimorphics/shared/data_services_api/' # gem 'json_rails_logger', '~>1.0.0', path: '~/Epimorphics/shared/json-rails-logger/' -# gem 'lr_common_styles', '~> 1.9.2', path: '~/Epimorphics/clients/land-registry/projects/lr_common_styles/' +# gem 'lr_common_styles', '~> 1.9.3', path: '~/Epimorphics/clients/land-registry/projects/lr_common_styles/' # rubocop:enable Layout/LineLength # TODO: In production you want to set this to the gem from the epimorphics package repo source 'https://rubygems.pkg.github.com/epimorphics' do gem 'data_services_api', '~> 1.3.3' gem 'json_rails_logger', '~>1.0.0' - gem 'lr_common_styles', '~> 1.9.2' + gem 'lr_common_styles', '~> 1.9.3' end diff --git a/Gemfile.lock b/Gemfile.lock index 7d053e6..207b2cc 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -344,7 +344,7 @@ GEM json lograge railties - lr_common_styles (1.9.2) + lr_common_styles (1.9.3) bootstrap-sass (~> 3.4.0) font-awesome-rails (~> 4.7.0.1) govuk_elements_rails (~> 2.0.0) @@ -385,7 +385,7 @@ DEPENDENCIES json_expressions json_rails_logger (~> 1.0.0)! libv8-node (>= 16.10.0.0) - lr_common_styles (~> 1.9.2)! + lr_common_styles (~> 1.9.3)! memory_profiler minitest-rails minitest-reporters From c39c8448f5ec88c8fa7c01110f7c4f6d623a6aa4 Mon Sep 17 00:00:00 2001 From: "Jon R. Humphrey" Date: Mon, 27 Nov 2023 11:01:36 +0000 Subject: [PATCH 2/3] build: updated patch version cadence Incremented version cadence of app from `v1.7.4` to `v1.7.5` to reflect the changes made to the included gems --- app/lib/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/version.rb b/app/lib/version.rb index 5473a78..011f92f 100644 --- a/app/lib/version.rb +++ b/app/lib/version.rb @@ -3,7 +3,7 @@ module Version MAJOR = 1 MINOR = 7 - PATCH = 4 + PATCH = 5 SUFFIX = nil VERSION = "#{MAJOR}.#{MINOR}.#{PATCH}#{SUFFIX && ".#{SUFFIX}"}" end From 0cb717d1704e8f715abb433f5e091a507acfa9a4 Mon Sep 17 00:00:00 2001 From: "Jon R. Humphrey" Date: Mon, 27 Nov 2023 11:01:54 +0000 Subject: [PATCH 3/3] docs: updated CHANGELOG --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 206b59e..8df2626 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ This app allows the user to explore HMLR price-paid open linked data. +## 1.7.5 - 2023-11-27 + +- (Jon) Updated the `lr_common_styles` gem to the latest 1.9.3 patch release. + ## 1.7.4 - 2023-11-23 - (Jon) Updated the `lr_common_styles` gem to the latest 1.9.2 patch release.