Skip to content

Commit

Permalink
releng for 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kazuho committed Apr 22, 2017
1 parent f556c3e commit bdaef03
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ PROJECT(h2o)

SET(VERSION_MAJOR "2")
SET(VERSION_MINOR "2")
SET(VERSION_PATCH "0")
SET(VERSION_PATCH "1")
SET(VERSION_PRERELEASE "")
SET(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}${VERSION_PRERELEASE}")
SET(LIBRARY_VERSION_MAJOR "0")
SET(LIBRARY_VERSION_MINOR "13")
SET(LIBRARY_VERSION_PATCH "0")
SET(LIBRARY_VERSION_PATCH "1")
SET(LIBRARY_VERSION "${LIBRARY_VERSION_MAJOR}.${LIBRARY_VERSION_MINOR}.${LIBRARY_VERSION_PATCH}${VERSION_PRERELEASE}")
SET(LIBRARY_SOVERSION "${LIBRARY_VERSION_MAJOR}.${LIBRARY_VERSION_MINOR}")

Expand Down
11 changes: 11 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
Revision history for H2O.

2.2.1 2017-04-22 22:43:00+0000
- [mruby] correct the line number reported on an exception #1239 #1251 (Ichito Nagata)
- [mruby] retain the order of request headers sharing a single name #1271 (Kazuho Oku)
- [ssl] fix assertion failure in `decode_ssl_input` #1264 (Kazuho Oku)
- [ssl] fix OCSP stapling error when OpenSSL 1.1.0 is used #1270 (Kazuho Oku)
- [libh2o] fix crash when abruptly closing an HTTP/2 connection on libuv #1250 (Kazuho Oku)
- [libh2o] fix memory leak of `_timestamp_cache` #1255 (Kazuho Oku)
- [doc] restore doc of `%{...}e` #1252 (Kazuho Oku)
- [doc] fix typo suggesting using `brotli` instead of `br` #1263 (Bogdan Khomutsky)
- [misc] fix undefined behaviors detected by ubsan #1246 (Frederik Deweerdt)

2.2.0 2017-04-05 02:18:00+0000
- [core] add `crash-handler.wait-pipe-close` parameter #1092 (Frederik Deweerdt)
- [core] introduce an option to bypass the `server` header sent from upstream #1226 (Frederik Deweerdt)
Expand Down
6 changes: 3 additions & 3 deletions include/h2o/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@
#ifndef h2o__version_h
#define h2o__version_h

#define H2O_VERSION "2.2.0"
#define H2O_VERSION "2.2.1"

#define H2O_VERSION_MAJOR 2
#define H2O_VERSION_MINOR 2
#define H2O_VERSION_PATCH 0
#define H2O_VERSION_PATCH 1

#define H2O_LIBRARY_VERSION_MAJOR 0
#define H2O_LIBRARY_VERSION_MINOR 13
#define H2O_LIBRARY_VERSION_PATCH 0
#define H2O_LIBRARY_VERSION_PATCH 1

#endif

0 comments on commit bdaef03

Please sign in to comment.