Skip to content

Commit

Permalink
Set version flags for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Thorson committed Jul 16, 2018
1 parent c432425 commit c6d7e29
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = WebSocket++
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 0.9.x-dev
PROJECT_NUMBER = 0.8.1

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
WebSocket++ (0.9.0-dev)
WebSocket++ (0.8.1)
==========================

WebSocket++ is a header only C++ library that implements RFC6455 The WebSocket
Expand Down
6 changes: 3 additions & 3 deletions websocketpp/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,17 @@ static int const major_version = 0;
/// Library minor version number
static int const minor_version = 8;
/// Library patch version number
static int const patch_version = 0;
static int const patch_version = 1;
/// Library pre-release flag
/**
* This is a textual flag indicating the type and number for pre-release
* versions (dev, alpha, beta, rc). This will be blank for release versions.
*/

static char const prerelease_flag[] = "dev";
static char const prerelease_flag[] = "";

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

} // namespace websocketpp

Expand Down

0 comments on commit c6d7e29

Please sign in to comment.