Skip to content

Commit

Permalink
Merge branch 'develop' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
driskell committed Sep 23, 2014
2 parents bd258d7 + 515f1da commit 909c267
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
16 changes: 14 additions & 2 deletions docs/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,23 @@
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of Contents** *generated with [DocToc](http://doctoc.herokuapp.com/)*

- [Latest Development](#latest-development)
- [0.14](#014)
- [0.13](#013)
- [0.12](#012)
- [0.11](#011)
- [0.10](#010)
- [0.9](#09)
- [Pre-release](#pre-release)
- [Pre-0.10](#pre-010)

<!-- END doctoc generated TOC please keep comment here to allow auto update -->

## 0.15

*23rd September 2014*

* Fix admin being enabled by default when it shouldn't be (#46)

## 0.14

*18th September 2014*
Expand Down Expand Up @@ -42,6 +49,11 @@ JrJackson parse mode from string to raw+bigdecimal
* Gracefully handle lines greater than 1 MiB in size by splitting and tagging
them, and make the size configurable (#40)

**Known Issues**

* Admin is enabled by default when it shouldn't be. Workaround: Set the
"admin enabled" general configuration option to false.

## 0.13

*30th August 2014*
Expand Down Expand Up @@ -139,7 +151,7 @@ not forever
* Enable comments inside the configuration file
* Reduce unnecessary logging

## Pre-release
## Pre-0.10

The following are fixes present in the Driskell fork of Logstash Forwarder 0.3.1
which Log Courier builds upon.
Expand Down
2 changes: 1 addition & 1 deletion log-courier.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |gem|
gem.name = 'log-courier'
gem.version = '0.14'
gem.version = '0.15'
gem.description = 'Log Courier library'
gem.summary = 'Receive events from Log Courier and transmit between LogStash instances'
gem.homepage = 'https://github.com/driskell/log-courier'
Expand Down
2 changes: 1 addition & 1 deletion src/lc-lib/core/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
)

const (
default_GeneralConfig_AdminEnabled bool = true
default_GeneralConfig_AdminEnabled bool = false
default_GeneralConfig_AdminBind string = "tcp:127.0.0.1:1234"
default_GeneralConfig_PersistDir string = "."
default_GeneralConfig_ProspectInterval time.Duration = 10 * time.Second
Expand Down
2 changes: 1 addition & 1 deletion src/lc-lib/core/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@

package core

const Log_Courier_Version string = "0.14"
const Log_Courier_Version string = "0.15"

0 comments on commit 909c267

Please sign in to comment.