From fa36b5e99a65ccfb08f1abfbcaf8c5ab1e1602d6 Mon Sep 17 00:00:00 2001 From: Sven Strickroth Date: Thu, 2 Oct 2025 17:41:58 +0200 Subject: [PATCH] Use latest pcre2 Signed-off-by: Sven Strickroth --- .github/workflows/CI_build.yml | 2 +- README.md | 2 +- init.ps1 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI_build.yml b/.github/workflows/CI_build.yml index 6ca20eb..a1f6663 100644 --- a/.github/workflows/CI_build.yml +++ b/.github/workflows/CI_build.yml @@ -12,7 +12,7 @@ jobs: build_configuration: [Release, Debug] build_platform: [x64, arm64, x86] build_vsver: [17] - PCRE2_VERSION: [10.44] + PCRE2_VERSION: [10.46] steps: - uses: actions/checkout@v4 diff --git a/README.md b/README.md index 3b1d60c..16125ef 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Clone the [EditorConfig plugin for Notepad++][] sources or download and extract To download [EditorConfig C core][] and [PRCE2][pcre] use the `init.ps1` script. ```powershell -~> ./init.ps1 [-prce 10.32] [-edc 0.12.3] +~> ./init.ps1 [-prce 10.46] [-edc 0.12.3] ``` Arguments: diff --git a/init.ps1 b/init.ps1 index 87be035..02f5558 100644 --- a/init.ps1 +++ b/init.ps1 @@ -1,5 +1,5 @@ param( - $pcre="10.44", + $pcre="10.46", $edc="0.12.9" )