Skip to content

Commit 01367c2

Browse files
committed
chore(release): 2.9.1
1 parent 11648b9 commit 01367c2

File tree

6 files changed

+21
-11
lines changed

6 files changed

+21
-11
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
1-
# Change Log
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4+
5+
## [2.9.1](https://github.com/driskell/log-courier/compare/v2.9.0...v2.9.1) (2022-10-15)
6+
7+
8+
### Bug Fixes
9+
10+
* Fix installation issue of gems due to missing version.rb file ([a2dc5e4](https://github.com/driskell/log-courier/commit/a2dc5e4f680f0b66d0abf1e13006ddc240629110)), closes [#393](https://github.com/driskell/log-courier/issues/393)
11+
* Fix recursive lock in harvester blocking admin socket ([dc03b40](https://github.com/driskell/log-courier/commit/dc03b40da03a0b1982418e5f85d33125bc3d3ea6)), closes [#394](https://github.com/driskell/log-courier/issues/394)
212

313
## 2.9.0
414

lc-lib/core/version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ package core
1919
// LogCourierVersion is the library version number
2020
const LogCourierMajorVersion uint32 = 2
2121
const LogCourierMinorVersion uint32 = 9
22-
const LogCourierPatchVersion uint32 = 0
23-
const LogCourierVersion string = "2.9.0"
22+
const LogCourierPatchVersion uint32 = 1
23+
const LogCourierVersion string = "2.9.1"
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Version of LogCourier
22
module LogCourier
33
MAJOR_VERSION = 2
4-
MINOR_VERSION = 7
5-
PATCH_VERSION = 3
6-
VERSION = '2.7.3'.freeze
4+
MINOR_VERSION = 9
5+
PATCH_VERSION = 1
6+
VERSION = '2.9.1'.freeze
77
end

ruby/log-courier/log-courier.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |gem|
22
gem.name = 'log-courier'
3-
gem.version = '2.7.3'
3+
gem.version = '2.9.1'
44
gem.description = 'Log Courier library'
55
gem.summary = 'Ruby implementation of the Courier protocol'
66
gem.homepage = 'https://github.com/driskell/log-courier'

ruby/logstash-input-courier/logstash-input-courier.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Add platform conditions around java-only dependencies so GitHub dependency chart that is MRI only (I think) still works
22
Gem::Specification.new do |gem|
33
gem.name = 'logstash-input-courier'
4-
gem.version = '2.7.4'
4+
gem.version = '2.9.1'
55
gem.description = 'Courier Input Logstash Plugin'
66
gem.summary = 'Receive events from Log Courier and Logstash using the Courier protocol'
77
gem.homepage = 'https://github.com/driskell/log-courier'
@@ -17,7 +17,7 @@ Gem::Specification.new do |gem|
1717

1818
gem.metadata = { 'logstash_plugin' => 'true', 'logstash_group' => 'input' }
1919

20-
gem.add_runtime_dependency 'log-courier', '= 2.7.3'
20+
gem.add_runtime_dependency 'log-courier', '= 2.9.1'
2121
gem.add_runtime_dependency 'logstash-codec-plain' if RUBY_PLATFORM == 'java'
2222
gem.add_runtime_dependency 'logstash-core-plugin-api', '>= 1.60', '<= 2.99' if RUBY_PLATFORM == 'java'
2323
end

ruby/logstash-output-courier/logstash-output-courier.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Add platform conditions around java-only dependencies so GitHub dependency chart that is MRI only (I think) still works
22
Gem::Specification.new do |gem|
33
gem.name = 'logstash-output-courier'
4-
gem.version = '2.7.3'
4+
gem.version = '2.9.1'
55
gem.description = 'Courier Output Logstash Plugin'
66
gem.summary = 'Transmit events from one Logstash instance to another using the Courier protocol'
77
gem.homepage = 'https://github.com/driskell/log-courier'
@@ -17,7 +17,7 @@ Gem::Specification.new do |gem|
1717

1818
gem.metadata = { 'logstash_plugin' => 'true', 'logstash_group' => 'output' }
1919

20-
gem.add_runtime_dependency 'log-courier', '= 2.7.3'
20+
gem.add_runtime_dependency 'log-courier', '= 2.9.1'
2121
gem.add_runtime_dependency 'logstash-codec-plain' if RUBY_PLATFORM == 'java'
2222
gem.add_runtime_dependency 'logstash-core-plugin-api', '>= 1.60', '<= 2.99' if RUBY_PLATFORM == 'java'
2323
end

0 commit comments

Comments
 (0)