From 6f8749a1054e8b5c1cc077335ccd31b0af74b06a Mon Sep 17 00:00:00 2001 From: Tyrrrz <1935960+Tyrrrz@users.noreply.github.com> Date: Thu, 9 Nov 2023 13:11:59 +0200 Subject: [PATCH] Update version --- Changelog.md | 7 +++++++ Directory.Build.props | 2 +- DiscordChatExporter.Cli.dockerfile | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/Changelog.md b/Changelog.md index ff953d30..3ec45da4 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,12 @@ # Changelog +## v2.42.3 (09-Nov-2023) + +- JSON changes: + - Added the `video` field to the embed object, which may contain additional information about an embedded video resource. +- CSV changes: + - Fixed an issue where the `Date` field was incorrectly formatted. Now, the dates follow the `ISO 8601` standard. + ## v2.42.2 (26-Oct-2023) - General changes: diff --git a/Directory.Build.props b/Directory.Build.props index a5a3cae8..fac9289a 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -2,7 +2,7 @@ net7.0 - 2.42.2 + 2.42.3 Tyrrrz Copyright (c) Oleksii Holub preview diff --git a/DiscordChatExporter.Cli.dockerfile b/DiscordChatExporter.Cli.dockerfile index d50b73cd..ac76810d 100644 --- a/DiscordChatExporter.Cli.dockerfile +++ b/DiscordChatExporter.Cli.dockerfile @@ -33,7 +33,7 @@ RUN dotnet publish DiscordChatExporter.Cli \ # Use `runtime-deps` instead of `runtime` because we have a self-contained assembly FROM --platform=$TARGETPLATFORM mcr.microsoft.com/dotnet/runtime-deps:7.0 AS run -LABEL org.opencontainers.image.title="DiscordChatExporter.CLI" +LABEL org.opencontainers.image.title="DiscordChatExporter.Cli" LABEL org.opencontainers.image.description="DiscordChatExporter is an application that can be used to export message history from any Discord channel to a file." LABEL org.opencontainers.image.authors="tyrrrz.me" LABEL org.opencontainers.image.url="https://github.com/Tyrrrz/DiscordChatExporter"