summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--RELEASE-NOTES-4.19.2 (renamed from RELEASE-NOTES-4.19.1)10
-rw-r--r--meson.build4
2 files changed, 6 insertions, 8 deletions
diff --git a/RELEASE-NOTES-4.19.1 b/RELEASE-NOTES-4.19.2
index 72e479c7..df859a8a 100644
--- a/RELEASE-NOTES-4.19.1
+++ b/RELEASE-NOTES-4.19.2
@@ -1,6 +1,6 @@
┌──────────────────────────────┐
- │ Release notes for i3 v4.19.1 │
+ │ Release notes for i3 v4.19.2 │
└──────────────────────────────┘
This is i3 v4.19. This version is considered stable. All users of i3 are
@@ -12,9 +12,7 @@ This is a bugfix release for v4.19
│ Bugfixes │
└────────────────────────────┘
- • fix workspaces not moving to assigned output after output becomes available
- • fix duplicate bindcode after i3-config-wizard
- • fix commented-out rofi call in default i3 config
+ • fix release tarball version number and debug log settings
┌────────────────────────────┐
│ Thanks! │
@@ -22,6 +20,6 @@ This is a bugfix release for v4.19
Thanks for testing, bugfixes, discussions and everything I forgot go out to:
- Anaël Beutot, Imran Virani, Orestis Floros
+ Stuart Henderson
--- Michael Stapelberg, 2021-02-01
+-- Michael Stapelberg, 2021-02-27
diff --git a/meson.build b/meson.build
index 14faf2d3..39fcbbe3 100644
--- a/meson.build
+++ b/meson.build
@@ -6,7 +6,7 @@
project(
'i3',
'c',
- version: '4.19.1',
+ version: '4.19.2',
default_options: [
'c_std=c11',
'warning_level=1', # enable all warnings (-Wall)
@@ -63,7 +63,7 @@ config_h = declare_dependency(
sources: vcs_tag(
input: config_h_in,
output: 'config.h',
- fallback: meson.project_version() + '-non-git',
+ fallback: meson.project_version() + ' (2021-02-27)',
)
)