summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilip H <47042125+pheiduck@users.noreply.github.com>2022-08-28 19:41:36 +0100
committerBram Moolenaar <Bram@vim.org>2022-08-28 19:41:36 +0100
commit533c306921a3ac46ab92f35dfc4ebd22b3da845d (patch)
tree3dd20cda6272eb533990f9f00ae01d77b0d99e14
parent670ab0334b536e12d84810de88e73b7bcb01346d (diff)
patch 9.0.0305: CI lists useless deprecation warningsv9.0.0305
Problem: CI lists useless deprecation warnings. Solution: Ignore deprecation warnings. (closes #11003)
-rw-r--r--.github/workflows/ci.yml2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 1e20067625..ebbccd77ac 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -21,7 +21,7 @@ jobs:
TEST: test
SRCDIR: ./src
LEAK_CFLAGS: -DEXITFREE
- CFLAGS: -Wno-error=deprecated-declarations
+ CFLAGS: -Wno-deprecated-declarations
LOG_DIR: ${{ github.workspace }}/logs
TERM: xterm
DISPLAY: ':99'
diff --git a/src/version.c b/src/version.c
index 3e1c7d308c..e865eb548b 100644
--- a/src/version.c
+++ b/src/version.c
@@ -708,6 +708,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 305,
+/**/
304,
/**/
303,