ipc: update semver values

This commit is contained in:
Ronan Pigott 2020-07-16 01:40:29 -07:00
parent e215557ba0
commit 3ccc854b4f

View file

@ -157,7 +157,7 @@ static const char *ipc_json_user_idle_inhibitor_description(enum sway_idle_inhib
} }
json_object *ipc_json_get_version(void) { json_object *ipc_json_get_version(void) {
int major = 0, minor = 0, patch = 0; int major = 1, minor = 5, patch = 0;
json_object *version = json_object_new_object(); json_object *version = json_object_new_object();
sscanf(SWAY_VERSION, "%u.%u.%u", &major, &minor, &patch); sscanf(SWAY_VERSION, "%u.%u.%u", &major, &minor, &patch);