Browse Source

Update version number to V1.17

bel2125 2 years ago
parent
commit
5a9aec4f86
3 changed files with 19 additions and 5 deletions
  1. 13 0
      RELEASE_NOTES.md
  2. 4 3
      VisualStudio/civetweb_lua/civetweb_lua.vcxproj
  3. 2 2
      include/civetweb.h

+ 13 - 0
RELEASE_NOTES.md

@@ -1,3 +1,13 @@
+Release Notes v1.17 (work in progress)
+===
+### Objectives: *to be defined*
+
+Changes
+-------
+
+- Update version number
+
+
 Release Notes v1.16
 ===
 ### Objectives: *bug fixes, documentation, WebDAV*
@@ -21,6 +31,9 @@ Changes
 - Remove Conan support
 - 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
 -----
 

+ 4 - 3
VisualStudio/civetweb_lua/civetweb_lua.vcxproj

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

+ 2 - 2
include/civetweb.h

@@ -23,9 +23,9 @@
 #ifndef 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_MINOR (16)
+#define CIVETWEB_VERSION_MINOR (17)
 #define CIVETWEB_VERSION_PATCH (0)
 
 #ifndef CIVETWEB_API