Skip to content

Commit

Permalink
Update version number to V1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
bel2125 committed Apr 16, 2023
1 parent d7ba35b commit 5a9aec4
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
13 changes: 13 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -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*
Expand All @@ -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
-----

Expand Down
7 changes: 4 additions & 3 deletions VisualStudio/civetweb_lua/civetweb_lua.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -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'">
Expand Down Expand Up @@ -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'">
Expand All @@ -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>
Expand Down
4 changes: 2 additions & 2 deletions include/civetweb.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5a9aec4

Please sign in to comment.