Update minimum required Pandoc version to 3.7.0.2

This commit is contained in:
Thorsten Sommer 2025-05-30 16:51:28 +02:00
parent 55e2911ad9
commit 5b1e06e732
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -21,7 +21,7 @@ public static partial class Pandoc
private const string LATEST_URL = "https://github.com/jgm/pandoc/releases/latest"; private const string LATEST_URL = "https://github.com/jgm/pandoc/releases/latest";
private static readonly ILogger LOG = Program.LOGGER_FACTORY.CreateLogger("Pandoc"); private static readonly ILogger LOG = Program.LOGGER_FACTORY.CreateLogger("Pandoc");
private static readonly Version MINIMUM_REQUIRED_VERSION = new (3, 7); private static readonly Version MINIMUM_REQUIRED_VERSION = new (3, 7, 0, 2);
private static readonly Version FALLBACK_VERSION = new (3, 7, 0, 2); private static readonly Version FALLBACK_VERSION = new (3, 7, 0, 2);
/// <summary> /// <summary>