diff --git a/README.md b/README.md index 619fd75..33e0e35 100644 --- a/README.md +++ b/README.md @@ -210,6 +210,10 @@ Adds basic tiling window manager functionality to cage. Unifies commands and actions. See Issue 4 in Bugs.md. +### Release 1.2.0 + +Adds output configuration as described in the man pages. + ## License Please see [LICENSE](https://github.com/project-repo/cagebreak/blob/master/LICENSE) diff --git a/man/cagebreak-config.5.md b/man/cagebreak-config.5.md index cdcf229..8f9cb72 100644 --- a/man/cagebreak-config.5.md +++ b/man/cagebreak-config.5.md @@ -1,4 +1,4 @@ -% CAGEBREAK-CONFIG(1) Version 1.1 | Cagebreak Manual +% CAGEBREAK-CONFIG(1) Version 1.2 | Cagebreak Manual # NAME diff --git a/man/cagebreak.1.md b/man/cagebreak.1.md index cacd1c2..07c0058 100644 --- a/man/cagebreak.1.md +++ b/man/cagebreak.1.md @@ -1,4 +1,4 @@ -% CAGEBREAK(1) Version 1.1 | Cagebreak Manual +% CAGEBREAK(1) Version 1.2 | Cagebreak Manual # NAME diff --git a/meson.build b/meson.build index 959d35f..40c09d7 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('cagebreak', 'c', - version: '1.1.0', + version: '1.2.0', license: 'MIT', default_options: [ 'c_std=c11', @@ -10,7 +10,6 @@ project('cagebreak', 'c', add_project_arguments( [ '-DWLR_USE_UNSTABLE', - '-Wall', '-Wundef', '-Wno-unused-parameter', ], @@ -188,7 +187,7 @@ reproducible_build_versions = { 'wlroots': '0.10.1', 'xkbcommon': '0.10.0', 'fontconfig': '2.13.91', - 'pixman': '0.38.4', + 'pixman': '0.40.0', 'pango': '1.44.7', 'cairo': '1.17.3', 'pangocairo': '1.44.7',