فهرست منبع

Prepare 1.9.1 patch release

bel 8 سال پیش
والد
کامیت
2f12084729
3فایلهای تغییر یافته به همراه8 افزوده شده و 5 حذف شده
  1. 1 1
      CMakeLists.txt
  2. 4 2
      RELEASE_NOTES.md
  3. 3 2
      include/civetweb.h

+ 1 - 1
CMakeLists.txt

@@ -26,7 +26,7 @@ include(CMakeDependentOption)
 
 # Set up the project
 project (civetweb)
-set(CIVETWEB_VERSION "1.10.0" CACHE STRING "The version of the civetweb library")
+set(CIVETWEB_VERSION "1.9.1" 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")

+ 4 - 2
RELEASE_NOTES.md

@@ -1,10 +1,12 @@
-Release Notes v1.10 (work in progress)
+Release Notes v1.9.1
 ===
-### Objectives: *TO BE DEFINED*
+### Objectives: *Bug fix*
 
 Changes
 -------
 
+- Fix for connections closed prematurely
+- Update to a new check unit test framework and remove patches required for previous version
 - Update version number
 
 

+ 3 - 2
include/civetweb.h

@@ -23,9 +23,10 @@
 #ifndef CIVETWEB_HEADER_INCLUDED
 #define CIVETWEB_HEADER_INCLUDED
 
-#define CIVETWEB_VERSION "1.10"
+#define CIVETWEB_VERSION "1.9.1"
 #define CIVETWEB_VERSION_MAJOR (1)
-#define CIVETWEB_VERSION_MINOR (10)
+#define CIVETWEB_VERSION_MINOR (9)
+#define CIVETWEB_VERSION_PATCH (1)
 
 #ifndef CIVETWEB_API
 #if defined(_WIN32)