diff options
author | David Robillard <d@drobilla.net> | 2025-01-18 16:45:25 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2025-01-18 16:50:01 -0500 |
commit | aecf20a6e6e6a6e78dbe5ea762e9785525142348 (patch) | |
tree | 4278023396863a0cd0882d330272641f13a82303 | |
parent | 2052a76d33ed3afc0a5bdab4eed574d7206c4459 (diff) | |
download | zix-aecf20a6e6e6a6e78dbe5ea762e9785525142348.tar.gz zix-aecf20a6e6e6a6e78dbe5ea762e9785525142348.tar.bz2 zix-aecf20a6e6e6a6e78dbe5ea762e9785525142348.zip |
Zix 0.6.0v0.6.0
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | doc/conf.py.in | 4 | ||||
-rw-r--r-- | meson.build | 4 |
3 files changed, 6 insertions, 6 deletions
@@ -1,4 +1,4 @@ -zix (0.5.1) unstable; urgency=medium +zix (0.6.0) stable; urgency=medium * Add ZIX_NODISCARD attribute * Add option to build for older Windows versions @@ -13,7 +13,7 @@ zix (0.5.1) unstable; urgency=medium * Support building for UWP * Support building for Windows with or without UNICODE - -- David Robillard <d@drobilla.net> Wed, 11 Dec 2024 05:22:31 +0000 + -- David Robillard <d@drobilla.net> Sat, 18 Jan 2025 21:49:37 +0000 zix (0.4.2) stable; urgency=medium diff --git a/doc/conf.py.in b/doc/conf.py.in index 6b3c415..a7c254d 100644 --- a/doc/conf.py.in +++ b/doc/conf.py.in @@ -1,10 +1,10 @@ -# Copyright 2021-2023 David Robillard <d@drobilla.net> +# Copyright 2021-2025 David Robillard <d@drobilla.net> # SPDX-License-Identifier: 0BSD OR ISC # Project information project = "Zix" -copyright = "2011-2023, David Robillard" +copyright = "2011-2025, David Robillard" author = "David Robillard" release = "@ZIX_VERSION@" version = "@ZIX_VERSION@" diff --git a/meson.build b/meson.build index d6792f7..02f2dbb 100644 --- a/meson.build +++ b/meson.build @@ -12,7 +12,7 @@ project( ], license: 'ISC', meson_version: '>= 0.56.0', - version: '0.5.1', + version: '0.6.0', ) zix_src_root = meson.current_source_dir() @@ -434,7 +434,7 @@ libzix = library( versioned_name, sources, c_args: c_suppressions + library_c_args, - darwin_versions: ['0.5.0', meson.project_version()], + darwin_versions: ['0.6.0', meson.project_version()], dependencies: dependencies, gnu_symbol_visibility: 'hidden', include_directories: include_dirs, |