diff --git a/CHANGELOG.md b/CHANGELOG.md index 4aa8d1d..b934ee0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Changelog -## Release candidate (3.0.0-rc.5) (2018-11-21) -- Bump [`thelounge`][1] to [`v3.0.0-rc.5`](https://github.com/thelounge/thelounge/releases/tag/v3.0.0-rc.5). +## Release candidate (3.0.0-rc.6) (2019-01-15) +- Bump [`thelounge`][1] to [`v3.0.0-rc.6`](https://github.com/thelounge/thelounge/releases/tag/v3.0.0-rc.6). - Upgrade to `node v10`. #### Breaking Changes diff --git a/Dockerfile b/Dockerfile index 9053e2c..9054ddd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,6 +15,6 @@ CMD ["thelounge", "start"] COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh # Install thelounge. -ARG THELOUNGE_VERSION=3.0.0-rc.5 +ARG THELOUNGE_VERSION=3.0.0-rc.6 RUN npm install --unsafe-perm -g thelounge@${THELOUNGE_VERSION} && \ npm cache clean --force diff --git a/Makefile b/Makefile index 4a37a91..149d73f 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -THELOUNGE_VERSION?=3.0.0-rc.5 +THELOUNGE_VERSION?=3.0.0-rc.6 ORGANISATION?=thelounge all: main alpine diff --git a/README.md b/README.md index fa2e05f..aee1c73 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ $ docker run --detach \ --publish 9000:9000 \ --volume ~/.thelounge:/var/opt/thelounge \ --restart always \ - thelounge/thelounge:latest + thelounge/thelounge:3.0.0-rc.6 ``` ### Data directory @@ -64,7 +64,7 @@ $ docker run --detach \ --publish 5000:9000 \ # Change host port to listen on port 5000 --volume ~/.thelounge:/var/opt/thelounge \ --restart always \ - thelounge/thelounge:3.0.0-pre.7 + thelounge/thelounge:3.0.0-rc.6 ``` ### Environment variables (advanced usage) diff --git a/alpine/Dockerfile b/alpine/Dockerfile index 8edb6dc..2065eb9 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -15,6 +15,6 @@ CMD ["thelounge", "start"] COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh # Install thelounge. -ARG THELOUNGE_VERSION=3.0.0-rc.5 +ARG THELOUNGE_VERSION=3.0.0-rc.6 RUN npm install --unsafe-perm -g thelounge@${THELOUNGE_VERSION} && \ npm cache clean --force