diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e56ceb..aaf2221 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,15 @@ # Changelog -## Release candidate (3.0.0-rc.1) (2018-09-20) -- Bump [`thelounge`][1] to [`v3.0.0-rc.1`](https://github.com/thelounge/lounge/releases/tag/v3.0.0-rc.1). +## Release candidate (3.0.0-rc.2) (2018-10-08) +- Bump [`thelounge`][1] to [`v3.0.0-rc.2`](https://github.com/thelounge/lounge/releases/tag/v3.0.0-rc.2). - Use `node v8`. -- Update the example `docker-compose.yml` file. #### Breaking Changes - Rename the image from `thelounge/lounge` to [`thelounge/thelounge`](https://hub.docker.com/r/thelounge/thelounge/) on DockerHub. - Change default data path from `/home/lounge/data` to `/var/opt/thelounge`. - This requires you to update your mounted data volume to mount at `/var/opt/thelounge`. - Remove the `slim` flavour. -- Don't install `vim` and `nano` in the base image. +- No longer installs `vim` and `nano` in the base image. ## 2.7.1 (2018-02-19) diff --git a/Dockerfile b/Dockerfile index c227eef..bba0b29 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.1 +ARG THELOUNGE_VERSION=3.0.0-rc.2 RUN npm install --unsafe-perm -g thelounge@${THELOUNGE_VERSION} && \ npm cache clean --force diff --git a/Makefile b/Makefile index 7d47bb8..2899234 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -THELOUNGE_VERSION?=3.0.0-rc.1 +THELOUNGE_VERSION?=3.0.0-rc.2 ORGANISATION?=thelounge all: main alpine diff --git a/alpine/Dockerfile b/alpine/Dockerfile index 1327bdf..7aedd14 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.1 +ARG THELOUNGE_VERSION=3.0.0-rc.2 RUN npm install --unsafe-perm -g thelounge@${THELOUNGE_VERSION} && \ npm cache clean --force