Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit a663a15

Browse filesBrowse files
committed
cmake: bump version to 2.3.0
1 parent c24e076 commit a663a15
Copy full SHA for a663a15

File tree

Expand file treeCollapse file tree

4 files changed

+24
-4
lines changed
Filter options
Expand file treeCollapse file tree

4 files changed

+24
-4
lines changed

‎CHANGELOG.md

Copy file name to clipboardExpand all lines: CHANGELOG.md
+20Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Changelog
22

3+
### 2.3.0
4+
5+
This release fixes various issues.
6+
7+
*Fixes*
8+
9+
* Fix compile error on gcc 4.9
10+
* Fix warnings in clang 7
11+
* Fix self-assignment
12+
* Fix early destruction of server sessions
13+
* Fix crashes in multithreaded environment (#175)
14+
15+
*Additions*
16+
17+
* Support calling `rpc::this_server().stop()` from a server procedure (#187)
18+
* Make rpclib compatible with codebases that do not use exceptions
19+
* Add `server::port()` to query the port used by the server
20+
* Set `reuseaddress` option on the server
21+
22+
323
### 2.2.1
424

525
This release fixed a crash on Windows.

‎CMakeLists.txt

Copy file name to clipboardExpand all lines: CMakeLists.txt
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.5.1)
2-
project(rpc VERSION 2.2.1)
2+
project(rpc VERSION 2.3.0)
33

44
set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
55

‎doc/pages/versions.md

Copy file name to clipboard
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
You are reading the documentation of 2.2.1.
1+
You are reading the documentation of 2.3.0.
22
If, for some reason you need the documentation of older versions, you can download them from this page.
33

44
* [1.0.0](/archive/rpclib_docs_1.0.0.zip)

‎include/rpc/version.h

Copy file name to clipboardExpand all lines: include/rpc/version.h
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
namespace rpc {
77

88
static constexpr unsigned VERSION_MAJOR = 2;
9-
static constexpr unsigned VERSION_MINOR = 2;
10-
static constexpr unsigned VERSION_PATCH = 1;
9+
static constexpr unsigned VERSION_MINOR = 3;
10+
static constexpr unsigned VERSION_PATCH = 0;
1111

1212
} /* rpc */
1313

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.