Skip to content

Commit 9161119

Browse files
committed
bump version to alpha2
1 parent 7db60e3 commit 9161119

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ PROJECT_NAME = "websocketpp"
3333
# if some version control system is used.
3434

3535

36-
PROJECT_NUMBER = "0.3.0-alpha1"
36+
PROJECT_NUMBER = "0.3.0-alpha2"
3737

3838

3939
# Using the PROJECT_BRIEF tag one can provide an optional one line description

changelog.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
HEAD
1+
0.3.0-alpha2 - 2013-06-09
22
- Fixes a regression that caused servers being sent two close frames in a row
33
to end a connection uncleanly. #259
44
- Fixes a regression that caused spurious frames following a legitimate close

examples/echo_client/echo_client.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ int main(int argc, char* argv[]) {
6161

6262
std::stringstream url;
6363

64-
url << uri << "/runCase?case=" << i << "&agent=WebSocket++/0.3.0-alpha1";
64+
url << uri << "/runCase?case=" << i << "&agent=WebSocketpp/0.3.0-alpha2";
6565

6666
con = echo_client.get_connection(url.str(), ec);
6767

websocketpp/version.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ namespace websocketpp {
4242
static int const major_version = 0;
4343
static int const minor_version = 3;
4444
static int const patch_version = 0;
45-
static char const prerelease_flag[] = "alpha1";
45+
static char const prerelease_flag[] = "alpha2";
4646

47-
static char const user_agent[] = "WebSocket++/0.3.0-alpha1";
47+
static char const user_agent[] = "WebSocket++/0.3.0-alpha2";
4848

4949
} // namespace websocketpp
5050

0 commit comments

Comments
 (0)