Skip to content

Commit 386b314

Browse files
committed
Version bump to 0.5
1 parent 6888b13 commit 386b314

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
0.5
2+
+ Added the "primary" field for output. [notfound404]
3+
+ Added window_properties processing [BigRedEye]
4+
+ Added support for undocumented WorkspaceEventTypes [Tobias Hänel]
5+
+ Added payload to mode event [notfound4]
6+
+ Added more control on event socket to user
7+
+ Added example for i3 command w/ escaped substring. [Ken Gilmer]
8+
9+
~ Removed dynamic exception specifications [Morris Hafner]
10+
11+
* Fixies
112
0.4
213
+ Added support of GET_BARCONFIG and barconfig_update event and examples for them
314
+ Added getters form main and event sockets

src/ipc.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ int32_t connection::get_event_socket_fd() { return m_event_socket; }
623623

624624
const version_t& get_version() {
625625
#define I3IPC_VERSION_MAJOR 0
626-
#define I3IPC_VERSION_MINOR 4
626+
#define I3IPC_VERSION_MINOR 5
627627
#define I3IPC_VERSION_PATCH 0
628628
static version_t version = {
629629
.human_readable = auss_t() << I3IPC_VERSION_MAJOR << '.' << I3IPC_VERSION_MINOR << '.' << I3IPC_VERSION_PATCH << " (built on " << I3IPC_BUILD_DATETIME << ")",

0 commit comments

Comments
 (0)