- version bump

- compile for java 5 (1.1.2 was accidentally released compiled
  for java 7)
This commit is contained in:
Jordan Sissel 2012-10-23 10:20:21 -07:00
parent 75f1102abb
commit 8d8bf450fb
3 changed files with 5 additions and 2 deletions

View file

@ -1,3 +1,6 @@
1.1.3 (October 22 2012)
- rebuilt 1.1.2 for java 5 and 6
1.1.2 (October 22 2012)
## Overview of this release:
* New input plugins: lumberjack, sqs, relp

View file

@ -69,7 +69,7 @@ compile: compile-grammar compile-runner | build/ruby
.PHONY: compile-runner
compile-runner: build/ruby/logstash/runner.class
build/ruby/logstash/runner.class: lib/logstash/runner.rb | build/ruby $(JRUBY)
$(QUIET)(cd lib; $(JRUBYC) -t ../build/ruby logstash/runner.rb)
$(QUIET)(cd lib; $(JRUBYC) -5 -t ../build/ruby logstash/runner.rb)
# TODO(sissel): Stop using cpio for this
.PHONY: copy-ruby-files

View file

@ -1,5 +1,5 @@
# The version of logstash.
LOGSTASH_VERSION = "1.1.2"
LOGSTASH_VERSION = "1.1.3"
# Note to authors: this should not include dashes because 'gem' barfs if
# you include a dash in the version string.