Update version number to V1.17

This commit is contained in:
bel2125 2023-04-16 11:57:45 +02:00
parent d7ba35bbb6
commit 5a9aec4f86
3 changed files with 19 additions and 5 deletions

View File

@ -1,3 +1,13 @@
Release Notes v1.17 (work in progress)
===
### Objectives: *to be defined*
Changes
-------
- Update version number
Release Notes v1.16 Release Notes v1.16
=== ===
### Objectives: *bug fixes, documentation, WebDAV* ### Objectives: *bug fixes, documentation, WebDAV*
@ -21,6 +31,9 @@ Changes
- Remove Conan support - Remove Conan support
- Update version number - Update version number
Note: A precompiled 32-bit executables for Windows is no longer provided, but only a 64 bit version.
The source code itself still supports 32-bit platforms.
Known Issues Known Issues
----- -----

View File

@ -110,7 +110,8 @@
<GenerateDebugInformation>true</GenerateDebugInformation> <GenerateDebugInformation>true</GenerateDebugInformation>
</Link> </Link>
<PostBuildEvent> <PostBuildEvent>
<Command>rcedit-x86.exe $(OutDir)$(TargetName)$(TargetExt) --set-file-version 1.14 --set-product-version 1.14</Command> <Command>
</Command>
</PostBuildEvent> </PostBuildEvent>
</ItemDefinitionGroup> </ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
@ -159,7 +160,7 @@
<OptimizeReferences>true</OptimizeReferences> <OptimizeReferences>true</OptimizeReferences>
</Link> </Link>
<PostBuildEvent> <PostBuildEvent>
<Command>rcedit-x86.exe $(OutDir)$(TargetName)$(TargetExt) --set-file-version 1.15 --set-product-version 1.15</Command> <Command>rcedit-x86.exe $(OutDir)$(TargetName)$(TargetExt) --set-file-version 1.17 --set-product-version 1.17</Command>
</PostBuildEvent> </PostBuildEvent>
</ItemDefinitionGroup> </ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
@ -180,7 +181,7 @@
<OptimizeReferences>true</OptimizeReferences> <OptimizeReferences>true</OptimizeReferences>
</Link> </Link>
<PostBuildEvent> <PostBuildEvent>
<Command>rcedit-x86.exe $(OutDir)$(TargetName)$(TargetExt) --set-file-version 1.15 --set-product-version 1.15</Command> <Command>rcedit-x86.exe $(OutDir)$(TargetName)$(TargetExt) --set-file-version 1.17 --set-product-version 1.17</Command>
</PostBuildEvent> </PostBuildEvent>
</ItemDefinitionGroup> </ItemDefinitionGroup>
<ItemGroup> <ItemGroup>

View File

@ -23,9 +23,9 @@
#ifndef CIVETWEB_HEADER_INCLUDED #ifndef CIVETWEB_HEADER_INCLUDED
#define CIVETWEB_HEADER_INCLUDED #define CIVETWEB_HEADER_INCLUDED
#define CIVETWEB_VERSION "1.16" #define CIVETWEB_VERSION "1.17"
#define CIVETWEB_VERSION_MAJOR (1) #define CIVETWEB_VERSION_MAJOR (1)
#define CIVETWEB_VERSION_MINOR (16) #define CIVETWEB_VERSION_MINOR (17)
#define CIVETWEB_VERSION_PATCH (0) #define CIVETWEB_VERSION_PATCH (0)
#ifndef CIVETWEB_API #ifndef CIVETWEB_API