Skip to content

Commit

Permalink
Pin logstash core version to <2.0.0 for JDK6, because we need JrJacks…
Browse files Browse the repository at this point in the history
…on <0.3.5
  • Loading branch information
cyli committed Dec 13, 2015
1 parent d549e2d commit 608b2d9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ output {
```

### Changelog:
- [v0.1.4](https://github.com/cyli/logstash-output-slack/releases/tag/v0.1.4):
- Fix gemspec requirements to support newer versions of logstash core ([#14](https://github.com/cyli/logstash-output-slack/pull/14))
- [v0.1.3](https://github.com/cyli/logstash-output-slack/releases/tag/v0.1.3):
- No change - bug in releasing
- [v0.1.2](https://github.com/cyli/logstash-output-slack/releases/tag/v0.1.2):
- Added support for attachments
- [v0.1.1](https://github.com/cyli/logstash-output-slack/releases/tag/v0.1.1):
Expand Down
3 changes: 2 additions & 1 deletion logstash-output-slack.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ Gem::Specification.new do |s|
if RUBY_PLATFORM == 'java'
s.platform = RUBY_PLATFORM
if java.lang.System.get_property('java.version') < "1.7" # JDK6
core_upper_bound = "<= 2.0.0.snapshot3"
core_upper_bound = "< 2.0.0"
s.add_runtime_dependency "jrjackson", "< 0.3.5"
end
end

Expand Down

0 comments on commit 608b2d9

Please sign in to comment.