From 64b1b522979371f7be515653516552d31df889f8 Mon Sep 17 00:00:00 2001 From: Peter Thorson Date: Sun, 9 Jun 2013 11:07:19 -0500 Subject: [PATCH] adds documentation on locations of version info --- examples/echo_client/echo_client.cpp | 2 +- websocketpp/version.hpp | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/examples/echo_client/echo_client.cpp b/examples/echo_client/echo_client.cpp index 5ce319a9d8..7cd8f61151 100644 --- a/examples/echo_client/echo_client.cpp +++ b/examples/echo_client/echo_client.cpp @@ -61,7 +61,7 @@ int main(int argc, char* argv[]) { std::stringstream url; - url << uri << "/runCase?case=" << i << "&agent=WebSocket++/0.3.0-dev"; + url << uri << "/runCase?case=" << i << "&agent=WebSocket++/0.3.0-alpha1"; con = echo_client.get_connection(url.str(), ec); diff --git a/websocketpp/version.hpp b/websocketpp/version.hpp index 2049ab2ce3..a922e989bc 100644 --- a/websocketpp/version.hpp +++ b/websocketpp/version.hpp @@ -30,6 +30,15 @@ namespace websocketpp { +/* + other places where version information is kept + - echo_client + - readme.md + - changelog.md + - Doxyfile + - CMakeLists.txt +*/ + static int const major_version = 0; static int const minor_version = 3; static int const patch_version = 0;