Переглянути джерело

Update version number (header, cmake, readme, vcxproj, release notes)

bel2125 4 роки тому
батько
коміт
c35b346bdd

+ 1 - 1
CMakeLists.txt

@@ -41,7 +41,7 @@ include(AddCXXCompilerFlag)
 include(DetermineTargetArchitecture)
 include(CMakeDependentOption)
 
-set(CIVETWEB_VERSION "1.13.0" CACHE STRING "The version of the civetweb library")
+set(CIVETWEB_VERSION "1.14.0" CACHE STRING "The version of the civetweb library")
 string(REGEX MATCH "([0-9]+)\\.([0-9]+)\\.([0-9]+)" CIVETWEB_VERSION_MATCH "${CIVETWEB_VERSION}")
 if ("${CIVETWEB_VERSION_MATCH}" STREQUAL "")
   message(FATAL_ERROR "Must specify a semantic version: major.minor.patch")

+ 19 - 0
RELEASE_NOTES.md

@@ -1,3 +1,13 @@
+Release Notes v1.14 (under construction)
+===
+### Objectives: *TO BE DEFINED*
+
+Changes
+-------
+
+- Update version number
+
+
 Release Notes v1.13
 ===
 ### Objectives: *Various updates and fixes, additional API functions*
@@ -212,6 +222,7 @@ Changes
 - Fix bug in timer logic (for Lua Websockets)
 - Updated version number
 
+
 Release Notes v1.8
 ===
 ### Objectives: *CMake integration and continuous integration tests, Support client certificates, bug fixes*
@@ -260,6 +271,7 @@ Changes
 - Add status badges to the GitHub project main page
 - Updated version number
 
+
 Release Notes v1.7
 ===
 ### Objectives: *Examples, documentation, additional API functions, some functions rewritten, bug fixes and updates*
@@ -307,6 +319,7 @@ Changes
 - Fix compiler warnings
 - Updated version number
 
+
 Release Notes v1.6
 ===
 ### Objectives: *Enhance Lua support, configuration dialog for windows, new examples, bug fixes and updates*
@@ -350,6 +363,7 @@ Changes
 - Fixed Posix locking functions for Windows (bel2125)
 - Updated version number
 
+
 Release Notes v1.5
 ===
 ### Objectives: *Bug fixes and updates, repository restoration*
@@ -383,6 +397,7 @@ Changes
 - Updated version numbers.
 - Added contributor credits file.
 
+
 Release Notes v1.4
 ===
 ### Objectives: *New URI handler interface, feature enhancements, C++ extensions*
@@ -408,6 +423,7 @@ Changes
 - Conformed source files to UNIX line endings for consistency.
 - Unified the coding style to improve reability.
 
+
 Release Notes v1.3
 ===
 ### Objectives: *Buildroot Integration*
@@ -420,6 +436,7 @@ Changes
 - Updated documentation
 - Updated Buildroot config example
 
+
 Release Notes v1.2
 ===
 ### Objectives: *Installation Improvements, buildroot, cross compile support*
@@ -444,6 +461,7 @@ Known Issues
 
 - The prebuilt Window's version requires [Visual C++ Redistributable for Visual Studio 2012](http://www.microsoft.com/en-us/download/details.aspx?id=30679)
 
+
 Release Notes v1.1
 ===
 ### Objectives: *Build, Documentation, License Improvements*
@@ -488,6 +506,7 @@ Known Issues
 - Build changes may impact current users.
     + As with any change of this type, changes may impact some users.
 
+
 Release Notes v1.0
 ===
 

+ 2 - 2
VisualStudio/civetweb_lua/civetweb_lua.vcxproj

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

+ 1 - 0
docs/README.md

@@ -9,6 +9,7 @@ CivetWeb uses an [MIT license](https://github.com/civetweb/civetweb/blob/master/
 It can also be used by end users as a stand-alone web server. It is available as single executable, no installation is required.
 
 The current stable version is 1.13 - [release notes](https://github.com/civetweb/civetweb/blob/master/RELEASE_NOTES.md)
+Version 1.14 is under construction.
 
 End users can download CivetWeb at SourceForge
 [https://sourceforge.net/projects/civetweb/](https://sourceforge.net/projects/civetweb/)

+ 2 - 2
include/civetweb.h

@@ -23,9 +23,9 @@
 #ifndef CIVETWEB_HEADER_INCLUDED
 #define CIVETWEB_HEADER_INCLUDED
 
-#define CIVETWEB_VERSION "1.13"
+#define CIVETWEB_VERSION "1.14"
 #define CIVETWEB_VERSION_MAJOR (1)
-#define CIVETWEB_VERSION_MINOR (13)
+#define CIVETWEB_VERSION_MINOR (14)
 #define CIVETWEB_VERSION_PATCH (0)
 
 #ifndef CIVETWEB_API