Skip to content

Commit

Permalink
releng for 2.3.0-beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
kazuho committed Jun 2, 2018
1 parent 6440d8b commit 3f347b1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ PROJECT(h2o)
SET(VERSION_MAJOR "2")
SET(VERSION_MINOR "3")
SET(VERSION_PATCH "0")
SET(VERSION_PRERELEASE "-DEV")
SET(VERSION_PRERELEASE "-beta1")
SET(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}${VERSION_PRERELEASE}")
SET(LIBRARY_VERSION_MAJOR "0")
SET(LIBRARY_VERSION_MINOR "14")
SET(LIBRARY_VERSION_MINOR "15")
SET(LIBRARY_VERSION_PATCH "0")
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
2 changes: 1 addition & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Revision history for H2O.

2.3.0-beta1 TBD
2.3.0-beta1 2018-06-02 05:00:00+0000
- [core] forbid empty path string in configuration #1506 (Ichito Nagata)
- [core] use eventfd instead of pipe on linux #1533 (Baodong Chen)
- [core] remove redundancy #1568 #1569 #1584 #1596 (Baodong Chen)
Expand Down
6 changes: 3 additions & 3 deletions include/h2o/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@
#endif

#ifdef H2O_GITREV
#define H2O_VERSION "2.3.0-DEV@" H2O_TO_STR(H2O_GITREV)
#define H2O_VERSION "2.3.0-beta1@" H2O_TO_STR(H2O_GITREV)
#else
#define H2O_VERSION "2.3.0-DEV"
#define H2O_VERSION "2.3.0-beta1"
#endif

#define H2O_VERSION_MAJOR 2
#define H2O_VERSION_MINOR 3
#define H2O_VERSION_PATCH 0

#define H2O_LIBRARY_VERSION_MAJOR 0
#define H2O_LIBRARY_VERSION_MINOR 14
#define H2O_LIBRARY_VERSION_MINOR 15
#define H2O_LIBRARY_VERSION_PATCH 0

#endif

0 comments on commit 3f347b1

Please sign in to comment.