diff --git a/CHANGELOG.md b/CHANGELOG.md index 44d9208..6a42f8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 3.0.11 + - Docs: Correct code snippet [#28](https://github.com/logstash-plugins/logstash-output-csv/pull/28) + ## 3.0.10 - Extend `spreadsheet_safe` prefix guard to '-', '+', and '@' [#27](https://github.com/logstash-plugins/logstash-output-csv/pull/27) diff --git a/docs/index.asciidoc b/docs/index.asciidoc index 5d6642b..b3c05d1 100644 --- a/docs/index.asciidoc +++ b/docs/index.asciidoc @@ -147,7 +147,7 @@ You can customise the line format using the `line` codec like: [source,ruby] ----- output { - file { + csv { path => ... codec => line { format => "custom format: %{message}"} } @@ -180,4 +180,4 @@ may not make the values safe in your spreadsheet application include::{include_path}/{type}.asciidoc[] -:default_codec!: \ No newline at end of file +:default_codec!: diff --git a/logstash-output-csv.gemspec b/logstash-output-csv.gemspec index 6bb5632..d22f284 100644 --- a/logstash-output-csv.gemspec +++ b/logstash-output-csv.gemspec @@ -1,7 +1,7 @@ Gem::Specification.new do |s| s.name = 'logstash-output-csv' - s.version = '3.0.10' + s.version = '3.0.11' s.licenses = ['Apache License (2.0)'] s.summary = "Writes events to disk in a delimited format" s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"