Просмотр исходного кода

Update version number to V1.12

bel2125 6 лет назад
Родитель
Сommit
34586568dc
2 измененных файлов с 14 добавлено и 4 удалено
  1. 11 1
      RELEASE_NOTES.md
  2. 3 3
      include/civetweb.h

+ 11 - 1
RELEASE_NOTES.md

@@ -1,3 +1,13 @@
+Release Notes v1.12
+===
+### Objectives: *TO BE DEFINED*
+
+Changes
+-------
+
+- Update version number
+
+
 Release Notes v1.11
 ===
 ### Objectives: *Support multiple domains and certificates, support websocket ping-pong, on-the-fly compression, additional API functions*
@@ -19,7 +29,7 @@ Changes
 - Allow Kepler Syntax for Lua Server pages
 - Update duktape to 2.2.0 and Lua to 5.3.4
 - Optional support for on-the-fly compression (if zlib is available and USE_ZLIB is set)
-- Add method to replace mg\_cry and log\_access by own implemention
+- Add method to replace mg\_cry and log\_access by own implementation
 - Fixes for IPv6 support
 - Add server support for websocket ping pong protocol
 - Fix misspellings in source code and documentation

+ 3 - 3
include/civetweb.h

@@ -1,4 +1,4 @@
-/* Copyright (c) 2013-2017 the Civetweb developers
+/* Copyright (c) 2013-2018 the Civetweb developers
  * Copyright (c) 2004-2013 Sergey Lyubka
  *
  * Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -23,9 +23,9 @@
 #ifndef CIVETWEB_HEADER_INCLUDED
 #define CIVETWEB_HEADER_INCLUDED
 
-#define CIVETWEB_VERSION "1.11"
+#define CIVETWEB_VERSION "1.12"
 #define CIVETWEB_VERSION_MAJOR (1)
-#define CIVETWEB_VERSION_MINOR (11)
+#define CIVETWEB_VERSION_MINOR (12)
 #define CIVETWEB_VERSION_PATCH (0)
 
 #ifndef CIVETWEB_API