Skip to content

Commit 9f3ae8e

Browse files
committed
Version bump to 0.4
1 parent 21680fd commit 9f3ae8e

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

CHANGELOG

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
0.4
2+
+ Added support of GET_BARCONFIG and barconfig_update event and examples for them
3+
+ Added getters form main and event sockets
4+
+ Added i3ipc::get_version()
5+
6+
~ Calling i3ipc::connection::prepare_to_event_handling() is no more necessary
7+
~ Using i3ipc::errno_error when calling c-functions instead of std::runtime_error
8+
~ Logging-subsystem became public
9+
~ Refactoring of CMakeLists.txt
10+
11+
- i3ipc::connection::get_file_descriptor() removed
12+
113
0.3
214
+ Added support of BINDING event
315

src/ipc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ int32_t connection::get_event_socket_fd() { return m_event_socket; }
556556

557557
const version_t& get_version() {
558558
#define I3IPC_VERSION_MAJOR 0
559-
#define I3IPC_VERSION_MINOR 3
559+
#define I3IPC_VERSION_MINOR 4
560560
#define I3IPC_VERSION_PATCH 0
561561
static version_t version = {
562562
.human_readable = auss_t() << I3IPC_VERSION_MAJOR << '.' << I3IPC_VERSION_MINOR << '.' << I3IPC_VERSION_PATCH << " (built on " << I3IPC_BUILD_DATETIME << ")",

0 commit comments

Comments
 (0)