Skip to content

Commit 4ebedb2

Browse files
committed
Update versions to one that rubygems.org will accept
1 parent c994c6f commit 4ebedb2

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.circleci/docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM docker.elastic.co/logstash/logstash:7.2.0
22
COPY config /usr/share/logstash/config
33
COPY pipeline /usr/share/logstash/pipeline
4-
COPY logstash-output-scalyr-0.1.0.pre.beta.gem /tmp
5-
RUN /usr/share/logstash/bin/logstash-plugin install /tmp/logstash-output-scalyr-0.1.0.pre.beta.gem
4+
COPY logstash-output-scalyr-0.1.2.gem /tmp
5+
RUN /usr/share/logstash/bin/logstash-plugin install /tmp/logstash-output-scalyr-0.1.2.gem

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Beta
2-
## 0.1.0
2+
## 0.1.2
33
- Remove special treatment of `origin` field in favor of `serverHost`
44
- Change concurrency type to `single` to help guarantee one-time ordered delivery in Scalyr
55
- Change default compression to `deflate`

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
logstash-output-scalyr (0.1.0.pre.beta)
4+
logstash-output-scalyr (0.1.1)
55
ffi (>= 1.9.25)
66
logstash-codec-plain
77
logstash-core-plugin-api (>= 1.60, <= 2.99)
@@ -82,7 +82,7 @@ GEM
8282
minitar (0.5.4)
8383
multi_json (1.13.1)
8484
multipart-post (2.1.1)
85-
net-http-persistent (3.0.1)
85+
net-http-persistent (4.0.0)
8686
connection_pool (~> 2.2)
8787
numerizer (0.1.1)
8888
openssl_pkcs8_pure (0.0.0.2)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ You can view documentation for this plugin [on the Scalyr website](https://www.s
1010
# Quick start
1111

1212
1. Build the gem, run `gem build logstash-output-scalyr.gemspec`
13-
2. Install the gem into a Logstash installation, run `/usr/share/logstash/bin/logstash-plugin install logstash-output-scalyr-0.1.0.pre.beta.gem` or follow the latest official instructions on working with plugins from Logstash.
13+
2. Install the gem into a Logstash installation, run `/usr/share/logstash/bin/logstash-plugin install logstash-output-scalyr-0.1.2.gem` or follow the latest official instructions on working with plugins from Logstash.
1414
3. Configure the output plugin (e.g. add it to a pipeline .conf)
1515
4. Restart Logstash
1616

lib/scalyr/common/client.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def prepare_post_object(uri_path, body)
161161

162162
post = Net::HTTP::Post.new uri_path
163163
post.add_field('Content-Type', 'application/json')
164-
version = 'output-logstash-scalyr 0.1.0.beta'
164+
version = 'output-logstash-scalyr 0.1.2'
165165
post.add_field('User-Agent', version + ';' + RUBY_VERSION + ';' + RUBY_PLATFORM)
166166

167167
if not encoding.nil?

logstash-output-scalyr.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = 'logstash-output-scalyr'
3-
s.version = '0.1.0-beta'
3+
s.version = '0.1.2'
44
s.licenses = ['Apache-2.0']
55
s.summary = "Scalyr output plugin for Logstash"
66
s.description = "Sends log data collected by Logstash to Scalyr (https://www.scalyr.com)"

0 commit comments

Comments
 (0)