Skip to content

Commit

Permalink
v1.4.2, "drawer cat is back"
Browse files Browse the repository at this point in the history
- kafka 0.10.0 support, as well as a re-working of the --kafka_version
  command line option.
  • Loading branch information
Ben Osheroff committed Nov 1, 2016
1 parent db009f8 commit 92d9033
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,12 @@
# Maxwell changelog

### [v1.4.1](https://github.com/zendesk/maxwell/releases/tag/v1.4.1): "cat snores"


- support per-table topics, Thanks @smferguson and @sschatts.
- fix a parser issue with DROP COLUMN CASCADE, thanks @smferguson


### [v1.4.0](https://github.com/zendesk/maxwell/releases/tag/v1.4.0): "deep, insomniac character flaws"

1.4.0 brings us two nice new features:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
@@ -1,5 +1,5 @@
FROM java:openjdk-7-jre
ENV MAXWELL_VERSION 1.4.1
ENV MAXWELL_VERSION 1.4.2

RUN apt-get update && apt-get -y upgrade

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -17,7 +17,7 @@ advanced features:
parser for create/alter/drop statements (nope, there was no other way).

→ Download:
[https://github.com/zendesk/maxwell/releases/download/v1.4.1/maxwell-1.4.1.tar.gz](https://github.com/zendesk/maxwell/releases/download/v1.4.1/maxwell-1.4.1.tar.gz)
[https://github.com/zendesk/maxwell/releases/download/v1.4.2/maxwell-1.4.2.tar.gz](https://github.com/zendesk/maxwell/releases/download/v1.4.2/maxwell-1.4.2.tar.gz)
<br/>
&rarr; Source:
[https://github.com/zendesk/maxwell](https://github.com/zendesk/maxwell)
Expand Down
6 changes: 3 additions & 3 deletions docs/docs/quickstart.md
@@ -1,13 +1,13 @@
### Download
***
- Download binary distro: [https://github.com/zendesk/maxwell/releases/download/v1.4.1/maxwell-1.4.1.tar.gz](https://github.com/zendesk/maxwell/releases/download/v1.4.1/maxwell-1.4.1.tar.gz)
- Download binary distro: [https://github.com/zendesk/maxwell/releases/download/v1.4.2/maxwell-1.4.2.tar.gz](https://github.com/zendesk/maxwell/releases/download/v1.4.2/maxwell-1.4.2.tar.gz)
- Sources and bug tracking is available on github: [https://github.com/zendesk/maxwell](https://github.com/zendesk/maxwell)
- Obligatory copy/paste to terminal:

```
curl -sLo - https://github.com/zendesk/maxwell/releases/download/v1.4.1/maxwell-1.4.1.tar.gz \
curl -sLo - https://github.com/zendesk/maxwell/releases/download/v1.4.2/maxwell-1.4.2.tar.gz \
| tar zxvf -
cd maxwell-1.4.1
cd maxwell-1.4.2
```

### Row based replication
Expand Down
2 changes: 1 addition & 1 deletion docs/theme/base.html
Expand Up @@ -24,7 +24,7 @@
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.1/respond.min.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
</head>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -4,7 +4,7 @@

<groupId>com.zendesk</groupId>
<artifactId>maxwell</artifactId>
<version>1.4.1</version>
<version>1.4.2</version>
<packaging>jar</packaging>

<name>maxwell</name>
Expand Down
4 changes: 2 additions & 2 deletions src/main/assembly/assembly.xml
@@ -1,6 +1,6 @@
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.4.1"
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.4.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.4.1 http://maven.apache.org/xsd/assembly-1.4.1.xsd">
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.4.2 http://maven.apache.org/xsd/assembly-1.4.2.xsd">
<id>maxwell</id>
<formats>
<format>tar.gz</format>
Expand Down

0 comments on commit 92d9033

Please sign in to comment.