diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e04fa70..30742fe6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## unreleased +## 1.7.3 - 2024-03-15 + - (Jon) Updated puma.rb configuration to accept both `RAILS_MIN_THREADS` and `RAILS_MAX_THREADS` environment variables to allow a more flexible configuration for the application to run in different environments. diff --git a/app/lib/version.rb b/app/lib/version.rb index 980aa860..9efc59bc 100644 --- a/app/lib/version.rb +++ b/app/lib/version.rb @@ -3,7 +3,7 @@ module Version MAJOR = 1 MINOR = 7 - PATCH = 2 + PATCH = 3 SUFFIX = nil VERSION = "#{MAJOR}.#{MINOR}.#{PATCH}#{SUFFIX && ".#{SUFFIX}"}" end