Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.3.1] - 2026-02

### Added

- Added test coverage reporting with SimpleCov and a `coverage` Makefile target.
Expand Down
2 changes: 1 addition & 1 deletion app/lib/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Version
MAJOR = 2
MINOR = 3
PATCH = 0
PATCH = 1
SUFFIX = nil
VERSION = "#{MAJOR}.#{MINOR}.#{PATCH}#{SUFFIX && ".#{SUFFIX}"}".freeze
end
4 changes: 2 additions & 2 deletions app/views/exceptions/error_page.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
We're sorry, but the request you made was not understood. If you are requesting
data via a script or program, please check the URL parameters. If you see this
message as a result of using the House Price Index or Price Paid Data applications,
please let usknow so that we can correct the problem.
please let us know so that we can correct the problem.

- elsif status == 403
%h1.o-heading--1 Request denied

%p
We're sorry, but the request you made was not permitted. If you are requesting
data via a script or program, please check the URL parameters. If you see this
message as a result of using the HPI or PPD applications, please let us know so
message as a result of using the House Price Index or Price Paid Data applications, please let us know so
that we can correct the problem.

- elsif status == 404
Expand Down