From 8f98fffb8508957c10062b64a6a699cb47daacac Mon Sep 17 00:00:00 2001 From: William Boman Date: Tue, 23 Nov 2021 02:18:06 +0100 Subject: [PATCH] thelounge@4.3.0 (#129) --- CHANGELOG.md | 4 ++-- Dockerfile | 2 +- Makefile | 2 +- alpine/Dockerfile | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f53f60c..2859261 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Changelog -## 4.3.0-rc.2 (2021-11-19) -- Bump [`thelounge`][1] to [`4.3.0-rc.2`](https://github.com/thelounge/thelounge/releases/tag/v4.3.0-rc.2). +## 4.3.0 (2021-11-23) +- Bump [`thelounge`][1] to [`4.3.0`](https://github.com/thelounge/thelounge/releases/tag/v4.3.0). - Upgrade Node.js base images from 12 to LTS. ## 4.2.0 (2020-08-20) diff --git a/Dockerfile b/Dockerfile index 6b9000d..66d98c9 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=4.3.0-rc.2 +ARG THELOUNGE_VERSION=4.3.0 RUN yarn --non-interactive --frozen-lockfile global add thelounge@${THELOUNGE_VERSION} && \ yarn --non-interactive cache clean diff --git a/Makefile b/Makefile index 93412c3..f11e769 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -THELOUNGE_VERSION?=4.3.0-rc.2 +THELOUNGE_VERSION?=4.3.0 ORGANISATION?=thelounge all: main alpine diff --git a/alpine/Dockerfile b/alpine/Dockerfile index 266a1b2..4b901d5 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -15,7 +15,7 @@ CMD ["thelounge", "start"] COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh # Install thelounge. -ARG THELOUNGE_VERSION=4.3.0-rc.2 +ARG THELOUNGE_VERSION=4.3.0 RUN apk --update --no-cache add python3 build-base && \ yarn --non-interactive --frozen-lockfile global add thelounge@${THELOUNGE_VERSION} && \ yarn --non-interactive cache clean && \