# HG changeset patch # User Bram Moolenaar # Date 1661712303 -7200 # Node ID 275877ab83f0ca69cac2248e736556ac8080cac5 # Parent 3da5d586a1d04c02e89171bbda5c42a92a911d59 patch 9.0.0305: CI lists useless deprecation warnings Commit: https://github.com/vim/vim/commit/533c306921a3ac46ab92f35dfc4ebd22b3da845d Author: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Sun Aug 28 19:41:36 2022 +0100 patch 9.0.0305: CI lists useless deprecation warnings Problem: CI lists useless deprecation warnings. Solution: Ignore deprecation warnings. (closes https://github.com/vim/vim/issues/11003) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml --- 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 --- 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,