From d2fd2717beec82415bfd5dd3ca1a26908bb90faf Mon Sep 17 00:00:00 2001 From: Will Date: Tue, 15 Oct 2024 22:05:34 -0400 Subject: [PATCH] release: 0.12.2 --- .version | 2 +- CMakeLists.txt | 2 +- flake.nix | 2 +- meson.build | 2 +- pyproject.toml | 2 +- watcher-py/watcher/watcher.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.version b/.version index 34a83616..26acbf08 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.12.1 +0.12.2 diff --git a/CMakeLists.txt b/CMakeLists.txt index 67a8538c..1e908778 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ cmake_minimum_required(VERSION 3.9) project( wtr.watcher - VERSION 0.12.1 # hook: tool/release + VERSION 0.12.2 # hook: tool/release DESCRIPTION "watcher: a filesystem watcher" HOMEPAGE_URL "github.com/e-dant/watcher" LANGUAGES diff --git a/flake.nix b/flake.nix index b4aeb4d6..24dedeb4 100644 --- a/flake.nix +++ b/flake.nix @@ -43,7 +43,7 @@ , installBashScript ? "" }: pkgs.stdenv.mkDerivation { inherit src pname buildcfg targets; - version = "0.12.1"; # hook: tool/release + version = "0.12.2"; # hook: tool/release nativeBuildInputs = build_deps ++ maybe_sys_deps ++ [ snitch ]; env.WTR_WATCHER_USE_SYSTEM_SNITCH = 1; buildPhase = '' diff --git a/meson.build b/meson.build index a1ff4c65..a83867d6 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'watcher', ['cpp', 'c'], - version : '0.12.1', # hook: tool/release + version : '0.12.2', # hook: tool/release default_options : ['c_std=c99', 'cpp_std=c++17'], ) subdir('watcher-c') diff --git a/pyproject.toml b/pyproject.toml index bd3fd5dc..9b0bd581 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ requires = ["meson >= 0.61.5", "meson-python >= 0.14.0"] [project] name = "wtr-watcher" -version = "0.12.1" # hook: tool/release +version = "0.12.2" # hook: tool/release authors = [{name = "Will"}] homepage = "https://github.com/e-dant/watcher" description = "Filesystem watcher. Works anywhere. Simple, efficient, and friendly." diff --git a/watcher-py/watcher/watcher.py b/watcher-py/watcher/watcher.py index c473b14e..aaef2082 100644 --- a/watcher-py/watcher/watcher.py +++ b/watcher-py/watcher/watcher.py @@ -30,7 +30,7 @@ class _CEvent(ctypes.Structure): def _lazy_static_solib_handle() -> ctypes.CDLL: def solib_name(): - version = "0.12.1" # hook: tool/release + version = "0.12.2" # hook: tool/release v_major = version.split(".")[0] sysname = os.uname().sysname if sysname == "Darwin":