From 0a657124a57baa10c65554f04c7806e939927830 Mon Sep 17 00:00:00 2001 From: Christian Brabandt Date: Fri, 30 Dec 2022 17:28:12 +0000 Subject: [PATCH] patch 9.0.1113: users cannot easily try out a PR Problem: Users cannot easily try out a PR. Solution: Add an "artifacts" section to the AppVeyor CI config. (Christian Brabandt, closes #11762) --- .appveyor.yml | 6 ++++++ src/version.c | 2 ++ 2 files changed, 8 insertions(+) diff --git a/.appveyor.yml b/.appveyor.yml index 18259abea..1a177c8e4 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -29,4 +29,10 @@ test_script: # Testing with MSVC console version - nmake -f Make_mvc.mak VIMPROG=..\vim +artifacts: + - path: src/vim.exe + name: vim + - path: src/gvim.exe + name: gvim + # vim: sw=2 sts=2 et ts=8 sr diff --git a/src/version.c b/src/version.c index 4286a67c3..d4abf68e1 100644 --- a/src/version.c +++ b/src/version.c @@ -695,6 +695,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1113, /**/ 1112, /**/ -- 2.40.0