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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
## [Unreleased]
* no unreleased changes *

## 4.1.2 / 2025-01-24
### Fixed
* Bump bootstrap-datepicker to 1.7.1

## 4.1.1 / 2024-11-20
Expand Down
3 changes: 3 additions & 0 deletions gemfiles/Gemfile.rails61
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@ gem 'rails', '~> 6.1.0'
# Rails 6.1 does not support sqlite3 2.x; it specifies gem "sqlite3", "~> 1.4"
# in lib/active_record/connection_adapters/sqlite3_adapter.rb
gem 'sqlite3', '~> 1.7'

# Latest concurrent-ruby breaks Rails < 7.1. See https://github.com/rails/rails/issues/54260
gem 'concurrent-ruby', '1.3.4'
3 changes: 3 additions & 0 deletions gemfiles/Gemfile.rails70
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@ gem 'rails', '~> 7.0.0'
# Rails 7.0 does not support sqlite3 2.x; it specifies gem "sqlite3", "~> 1.4"
# in lib/active_record/connection_adapters/sqlite3_adapter.rb
gem 'sqlite3', '~> 1.7'

# Latest concurrent-ruby breaks Rails < 7.1. See https://github.com/rails/rails/issues/54260
gem 'concurrent-ruby', '1.3.4'
2 changes: 1 addition & 1 deletion lib/ndr_ui/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

# This stores the current version of the NdrUi gem. Use semantic versioning http://semver.org
module NdrUi
VERSION = '4.1.1'
VERSION = '4.1.2'
end
4 changes: 2 additions & 2 deletions ndr_ui.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Gem::Specification.new do |spec|
spec.homepage = 'https://github.com/NHSDigital/ndr_ui'
spec.license = 'MIT'

spec.files = Dir['{app,config,lib,vendor}/**/*', 'LICENSE.txt', 'Rakefile',
'README.md'] - ['.travis.yml']
spec.files = Dir['{app,config,lib,vendor}/**/*', 'CHANGELOG.md', 'CODE_OF_CONDUCT.md',
'LICENSE.txt', 'Rakefile', 'README.md'] - ['.travis.yml']

spec.required_ruby_version = '>= 3.0.0'

Expand Down
Loading