Skip to content

Commit

Permalink
Merge pull request #54 from epimorphics/spike/resolve-required-ruby-v…
Browse files Browse the repository at this point in the history
…ersion

Update required_ruby_version gemspec
  • Loading branch information
jonrandahl authored Nov 23, 2023
2 parents 6189a0a + 255ca08 commit 452f864
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ applications.

## Changes

## 1.9.2 - 2023-11-23

- (Jon) Resolves locked ruby version conflict created by using the `=` for the
`required_ruby_version` specification, this prevented associated rails apps
which are using a release version of ruby (e.g. `v2.6.6.146`) from building
- (Jon) Incremented version cadence of gem from `v1.9.1.2` to `v1.9.2` to
reflect the changes made to the gemspec

## 1.9.1.2 - 2023-04-19

- (Jon) updated static file settings to current format
Expand Down
4 changes: 2 additions & 2 deletions lib/lr_common_styles/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module LrCommonStyles
MAJOR = 1
MINOR = 9
PATCH = 1
SUFFIX = 2
PATCH = 2
SUFFIX = nil
VERSION = "#{MAJOR}.#{MINOR}.#{PATCH}#{SUFFIX && ".#{SUFFIX}"}"
end
2 changes: 1 addition & 1 deletion lr_common_styles.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Gem::Specification.new do |s|
s.summary = 'LR Common Styles for Rails'
s.description = 'Common elements of LR open data applications as a Rails engine'
s.license = 'MIT'
s.required_ruby_version = '= 2.6.6'
s.required_ruby_version = '~> 2.6.6'

s.files = Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.rdoc']
s.test_files = Dir['test/**/*']
Expand Down

0 comments on commit 452f864

Please sign in to comment.