Skip to content

Commit

Permalink
v0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
frsyuki committed Apr 9, 2015
1 parent 2256e52 commit 7fa60fc
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -30,7 +30,7 @@ Embulk is a Java application. Please make sure that you installed [Java](http://
Following 4 commands install embulk to your home directory:

```
curl --create-dirs -o ~/.embulk/bin/embulk -L https://bintray.com/artifact/download/embulk/maven/embulk-0.6.0.jar
curl --create-dirs -o ~/.embulk/bin/embulk -L https://bintray.com/artifact/download/embulk/maven/embulk-0.6.1.jar
chmod +x ~/.embulk/bin/embulk
echo 'export PATH="$HOME/.embulk/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
Expand All @@ -45,7 +45,7 @@ Embulk is a Java application. Please make sure that you installed [Java](http://
You can assume the jar file is a .bat file.

```
PowerShell -Command "& {Invoke-WebRequest https://bintray.com/artifact/download/embulk/maven/embulk-0.6.0.jar -OutFile embulk.bat}"
PowerShell -Command "& {Invoke-WebRequest https://bintray.com/artifact/download/embulk/maven/embulk-0.6.1.jar -OutFile embulk.bat}"
```

Next step: [Trying the example](#trying-the-example)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -12,7 +12,7 @@ def release_projects = [project(":embulk-core"), project(":embulk-standards")]

allprojects {
group = 'org.embulk'
version = '0.6.0'
version = '0.6.1'

apply plugin: 'java'
apply plugin: 'maven-publish'
Expand Down
Expand Up @@ -56,7 +56,7 @@ You can find the latest embulk binary from the `releases <https://bintray.com/em

.. code-block:: console
$ sudo wget https://bintray.com/artifact/download/embulk/maven/embulk-0.6.0.jar -O /usr/local/bin/embulk
$ sudo wget https://bintray.com/artifact/download/embulk/maven/embulk-0.6.1.jar -O /usr/local/bin/embulk
$ sudo chmod +x /usr/local/bin/embulk
Step 2. Install Elasticsearch plugin
Expand Down
1 change: 1 addition & 0 deletions embulk-docs/src/release.rst
Expand Up @@ -4,6 +4,7 @@ Release Notes
.. toctree::
:maxdepth: 1

release/release-0.6.1
release/release-0.6.0
release/release-0.5.5
release/release-0.5.4
Expand Down
11 changes: 11 additions & 0 deletions embulk-docs/src/release/release-0.6.1.rst
@@ -0,0 +1,11 @@
Release 0.6.1
==================================

Built-in plugins
------------------

* ``guess-csv`` fixed guessing (@bwtakacy++)

Release Date
------------------
2015-04-08
2 changes: 1 addition & 1 deletion lib/embulk/version.rb
@@ -1,3 +1,3 @@
module Embulk
VERSION = '0.6.0'
VERSION = '0.6.1'
end

0 comments on commit 7fa60fc

Please sign in to comment.