Skip to content

Commit

Permalink
2.4.1: Fix NSQ connection version string number (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
chen-anders authored Dec 15, 2023
1 parent 72572fb commit 4bda9e1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.4.1

* Client version connection string should also read from the VERSION file

## 2.4.0

* Remove jeweler gem in favor of using a dynamic gemspec [#66](https://github.com/wistia/nsq-ruby/pull/66)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.4.0
2.4.1
6 changes: 1 addition & 5 deletions lib/version.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
module Nsq
module Version
MAJOR = 2
MINOR = 3
PATCH = 1
BUILD = nil
STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join('.')
STRING = File.read(File.expand_path('../../VERSION', __FILE__)).strip
end
end
2 changes: 1 addition & 1 deletion nsq-ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |s|
"LICENSE.txt",
"README.md"
]
s.files = Dir.glob('lib/**/*.rb') + ['README.md']
s.files = Dir.glob('lib/**/*.rb') + ['README.md', 'VERSION']
s.homepage = "http://github.com/wistia/nsq-ruby".freeze
s.licenses = ["MIT".freeze]
s.rubygems_version = "2.6.8".freeze
Expand Down

0 comments on commit 4bda9e1

Please sign in to comment.