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)
diff --git a/.appveyor.yml b/.appveyor.yml
index 18259ab..1a177c8 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -29,4 +29,10 @@
# 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 4286a67..d4abf68 100644
--- a/src/version.c
+++ b/src/version.c
@@ -696,6 +696,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1113,
+/**/
1112,
/**/
1111,