From 740eb386a5f4650b006a583c8b6a3b19b965bfb5 Mon Sep 17 00:00:00 2001 From: Will Date: Mon, 7 Oct 2024 17:25:00 -0400 Subject: [PATCH] release: 0.12.0 --- .version | 2 +- CMakeLists.txt | 2 +- flake.nix | 2 +- watcher-py/watcher/watcher.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.version b/.version index d9df1bbc..ac454c6a 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.11.0 +0.12.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index e57df09d..e18f5f42 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ cmake_minimum_required(VERSION 3.9) project( wtr.watcher - VERSION 0.11.0 # hook: tool/release + VERSION 0.12.0 # 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 64aae743..c6057360 100644 --- a/flake.nix +++ b/flake.nix @@ -43,7 +43,7 @@ , installBashScript ? "" }: pkgs.stdenv.mkDerivation { inherit src pname buildcfg targets; - version = "0.11.0"; # hook: tool/release + version = "0.12.0"; # hook: tool/release nativeBuildInputs = build_deps ++ maybe_sys_deps ++ [ snitch ]; env.WTR_WATCHER_USE_SYSTEM_SNITCH = 1; buildPhase = '' diff --git a/watcher-py/watcher/watcher.py b/watcher-py/watcher/watcher.py index f1bf34b8..f1606acd 100644 --- a/watcher-py/watcher/watcher.py +++ b/watcher-py/watcher/watcher.py @@ -38,7 +38,7 @@ def native_solib_file_ending(): return "so" def libwatcher_c_lib_path(): - version = "0.11.0" # hook: tool/release + version = "0.12.0" # hook: tool/release heredir = os.path.dirname(os.path.abspath(__file__)) dir_path = os.path.join(heredir, ".watcher.mesonpy.libs") lib_name = f"libwatcher-c-{version}.{native_solib_file_ending()}"