Version bump to 0.4

This commit is contained in:
Sergey Naumov
2016-09-08 18:46:29 +03:00
parent 21680fd172
commit 9f3ae8e0a6
2 changed files with 13 additions and 1 deletions

View File

@@ -1,3 +1,15 @@
0.4
+ Added support of GET_BARCONFIG and barconfig_update event and examples for them
+ Added getters form main and event sockets
+ Added i3ipc::get_version()
~ Calling i3ipc::connection::prepare_to_event_handling() is no more necessary
~ Using i3ipc::errno_error when calling c-functions instead of std::runtime_error
~ Logging-subsystem became public
~ Refactoring of CMakeLists.txt
- i3ipc::connection::get_file_descriptor() removed
0.3
+ Added support of BINDING event

View File

@@ -556,7 +556,7 @@ int32_t connection::get_event_socket_fd() { return m_event_socket; }
const version_t& get_version() {
#define I3IPC_VERSION_MAJOR 0
#define I3IPC_VERSION_MINOR 3
#define I3IPC_VERSION_MINOR 4
#define I3IPC_VERSION_PATCH 0
static version_t version = {
.human_readable = auss_t() << I3IPC_VERSION_MAJOR << '.' << I3IPC_VERSION_MINOR << '.' << I3IPC_VERSION_PATCH << " (built on " << I3IPC_BUILD_DATETIME << ")",