Skip to content

Commit c6d7e29

Browse files
author
Peter Thorson
committed
Set version flags for release
1 parent c432425 commit c6d7e29

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = WebSocket++
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 0.9.x-dev
41+
PROJECT_NUMBER = 0.8.1
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
WebSocket++ (0.9.0-dev)
1+
WebSocket++ (0.8.1)
22
==========================
33

44
WebSocket++ is a header only C++ library that implements RFC6455 The WebSocket

websocketpp/version.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,17 +44,17 @@ static int const major_version = 0;
4444
/// Library minor version number
4545
static int const minor_version = 8;
4646
/// Library patch version number
47-
static int const patch_version = 0;
47+
static int const patch_version = 1;
4848
/// Library pre-release flag
4949
/**
5050
* This is a textual flag indicating the type and number for pre-release
5151
* versions (dev, alpha, beta, rc). This will be blank for release versions.
5252
*/
5353

54-
static char const prerelease_flag[] = "dev";
54+
static char const prerelease_flag[] = "";
5555

5656
/// Default user agent string
57-
static char const user_agent[] = "WebSocket++/0.9.0-dev";
57+
static char const user_agent[] = "WebSocket++/0.8.1";
5858

5959
} // namespace websocketpp
6060

0 commit comments

Comments
 (0)