Skip to content

Commit

Permalink
v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
frsyuki committed Jan 29, 2015
1 parent 2ea3e5d commit 24cc193
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 7 deletions.
9 changes: 9 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@

2015-01-29 version 0.2.1:

* Fixed LineEncoder#finish to flush all remaining buffer (reported by @aibou)
* Fixed NextConfig to be merged to in: or out: rather than the top-level
(reported by enukane) [#41]
* ./bin/embulk shows warns to run `rake` if ./classpath doesn't exist
* Embulk::PageBuilder#add accepts nil


2015-01-26 version 0.2.0:

* Changed JRuby InputPlugin API to use #run instead of .run
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Packaging effrots into plugins **brings OSS-style development to the data script
The single-file package is the simplest way to try Embulk. You can download the latest embulk-VERSION.jar from [the releases page](https://bintray.com/embulk/maven/embulk/view#files) and run it with java:

```
wget https://bintray.com/artifact/download/embulk/maven/embulk-0.2.0.jar -O embulk.jar
wget https://bintray.com/artifact/download/embulk/maven/embulk-0.2.1.jar -O embulk.jar
java -jar embulk.jar --help
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ allprojects {
apply plugin: 'com.jfrog.bintray'

group = 'org.embulk'
version = '0.2.0'
version = '0.2.1'

// to upload artifacts to Bintray by gradle-bintray-plugin
// $ gradle bintrayUpload
Expand Down
2 changes: 1 addition & 1 deletion embulk-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.embulk</groupId>
<artifactId>embulk-parent</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.2.1-SNAPSHOT</version>
</parent>

<artifactId>embulk-cli</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion embulk-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.embulk</groupId>
<artifactId>embulk-parent</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.2.1-SNAPSHOT</version>
</parent>

<artifactId>embulk-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion embulk-standards/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.embulk</groupId>
<artifactId>embulk-parent</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.2.1-SNAPSHOT</version>
</parent>

<artifactId>embulk-standards</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion lib/embulk/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Embulk
VERSION = "0.2.0"
VERSION = "0.2.1"
end
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>org.embulk</groupId>
<artifactId>embulk-parent</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.2.1-SNAPSHOT</version>
<packaging>pom</packaging>

<name>Embulk</name>
Expand Down

0 comments on commit 24cc193

Please sign in to comment.