Skip to content

Commit

Permalink
v1.23.5, "And I get so stuck in my head - Lost in all the lies, nihil…
Browse files Browse the repository at this point in the history
…istic backslide"

 - Update bootstrap documentation
 - Bump drop wizard metrics to support Java versions 10+
  • Loading branch information
Sam Xie committed Dec 12, 2019
1 parent ca3a58d commit 928324f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM maven:3.6-jdk-8
ENV MAXWELL_VERSION=1.23.4 KAFKA_VERSION=1.0.0
ENV MAXWELL_VERSION=1.23.5 KAFKA_VERSION=1.0.0

RUN apt-get update \
&& apt-get -y upgrade \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ search indexing and inter-service communication. Maxwell gives you some of the
benefits of event sourcing without having to re-architect your entire platform.

<b>Download:</b><br>
[https://github.com/zendesk/maxwell/releases/download/v1.23.4/maxwell-1.23.4.tar.gz](https://github.com/zendesk/maxwell/releases/download/v1.23.4/maxwell-1.23.4.tar.gz)
[https://github.com/zendesk/maxwell/releases/download/v1.23.5/maxwell-1.23.5.tar.gz](https://github.com/zendesk/maxwell/releases/download/v1.23.5/maxwell-1.23.5.tar.gz)
<br/>
<b>Source:</b><br>
[https://github.com/zendesk/maxwell](https://github.com/zendesk/maxwell)
Expand Down
6 changes: 3 additions & 3 deletions docs/docs/quickstart.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
### Download
***
- Download binary distro: [https://github.com/zendesk/maxwell/releases/download/v1.23.4/maxwell-1.23.4.tar.gz](https://github.com/zendesk/maxwell/releases/download/v1.23.4/maxwell-1.23.4.tar.gz)
- Download binary distro: [https://github.com/zendesk/maxwell/releases/download/v1.23.5/maxwell-1.23.5.tar.gz](https://github.com/zendesk/maxwell/releases/download/v1.23.5/maxwell-1.23.5.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.23.4/maxwell-1.23.4.tar.gz \
curl -sLo - https://github.com/zendesk/maxwell/releases/download/v1.23.5/maxwell-1.23.5.tar.gz \
| tar zxvf -
cd maxwell-1.23.4
cd maxwell-1.23.5
```

or get the docker image:
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>1.23.4</version>
<version>1.23.5</version>
<packaging>jar</packaging>

<name>maxwell</name>
Expand Down

3 comments on commit 928324f

@osheroff
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hey @samzx (and anyone doing releases) -- for some reason when you all do releases the documentation site goes bad until I rebuild it on my machine (it looks like this:)

image

maybe mkdocs changed something important in a later version? what does mkdocs --version give you all?

@osheroff
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(ps thx for the fun title tradition continuation)

@samzx
Copy link
Contributor

@samzx samzx commented on 928324f Dec 15, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@osheroff Hmm it does seem like the latest version of MkDocs has that styling

I just followed the install steps on their site, so that must've been why: https://www.mkdocs.org/#installation

Might be worth mentioning which version to install under https://github.com/zendesk/maxwell/blob/master/build/README.md#prerequisites if we intend to keep to a specific version (I was just following the steps there 😅 )

This is the version I got

mkdocs, version 1.0.4 from /usr/local/lib/python3.7/site-packages/mkdocs (Python 3.7)

Please sign in to comment.