Skip to content

Commit

Permalink
v0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Osheroff committed Jul 14, 2015
1 parent 77f5c9f commit 40caf65
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ RUN apt-get update && apt-get install -y openjdk-7-jre curl
RUN mkdir /app
WORKDIR /app

RUN curl -sLo - https://github.com/zendesk/maxwell/releases/download/v0.9.0/maxwell-0.9.0.tar.gz | tar zxvf -
RUN curl -sLo - https://github.com/zendesk/maxwell/releases/download/v0.9.3/maxwell-0.9.3.tar.gz | tar zxvf -

WORKDIR /app/maxwell-0.9.0
WORKDIR /app/maxwell-0.9.3

ADD REVISION /

Expand Down
2 changes: 1 addition & 1 deletion bin/maxwell
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

base_dir=$(dirname $0)/..

CLASSPATH=$CLASSPATH:$base_dir/target/classes
CLASSPATH=$CLASSPATH:$base_dir/target/classes:../open-replicator/target/classes

for file in $base_dir/target/maxwell-*/*/lib/*.jar lib/*.jar
do
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ mysql> GRANT ALL on maxwell.* to 'maxwell'@'localhost';
You'll need a version 7 of a JVM.

```
curl -sLo - https://github.com/zendesk/maxwell/releases/download/v0.9.2/maxwell-0.9.2.tar.gz \
curl -sLo - https://github.com/zendesk/maxwell/releases/download/v0.9.3/maxwell-0.9.3.tar.gz \
| tar zxvf -
cd maxwell-0.9.2
cd maxwell-0.9.3
```


Expand Down
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>com.zendesk</groupId>
<artifactId>maxwell</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
<packaging>jar</packaging>

<name>maxwell</name>
Expand Down

0 comments on commit 40caf65

Please sign in to comment.