Explorar el Código

Increase version number 1.14 --> 1.15

bel2125 hace 4 años
padre
commit
ad806afc49
Se han modificado 4 ficheros con 15 adiciones y 5 borrados
  1. 1 1
      CMakeLists.txt
  2. 10 0
      RELEASE_NOTES.md
  3. 2 2
      docs/README.md
  4. 2 2
      include/civetweb.h

+ 1 - 1
CMakeLists.txt

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

+ 10 - 0
RELEASE_NOTES.md

@@ -1,3 +1,13 @@
+Release Notes v1.15 (work in progress)
+===
+### Objectives: *TBD*
+
+Changes
+-------
+
+- Update version number
+
+
 Release Notes v1.14
 Release Notes v1.14
 ===
 ===
 ### Objectives: *mbedTLS, Lua API enhancements, log filtering*
 ### Objectives: *mbedTLS, Lua API enhancements, log filtering*

+ 2 - 2
docs/README.md

@@ -8,8 +8,8 @@ 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.
 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.
+The current stable version is 1.14 - [release notes](https://github.com/civetweb/civetweb/blob/master/RELEASE_NOTES.md)
+Version 1.15 is under construction.
 
 
 End users can download CivetWeb at SourceForge
 End users can download CivetWeb at SourceForge
 [https://sourceforge.net/projects/civetweb/](https://sourceforge.net/projects/civetweb/)
 [https://sourceforge.net/projects/civetweb/](https://sourceforge.net/projects/civetweb/)

+ 2 - 2
include/civetweb.h

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