From 689617758ac156b9b653dbf1e050917731399d52 Mon Sep 17 00:00:00 2001 From: Will Date: Tue, 8 Oct 2024 17:59:01 -0400 Subject: [PATCH] release: 0.12.1 --- .version | 2 +- CMakeLists.txt | 2 +- flake.nix | 2 +- meson.build | 2 +- watcher-py/watcher/watcher.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.version b/.version index ac454c6a..34a83616 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.12.0 +0.12.1 diff --git a/CMakeLists.txt b/CMakeLists.txt index e18f5f42..67a8538c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ cmake_minimum_required(VERSION 3.9) project( wtr.watcher - VERSION 0.12.0 # hook: tool/release + VERSION 0.12.1 # 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 c6057360..b4aeb4d6 100644 --- a/flake.nix +++ b/flake.nix @@ -43,7 +43,7 @@ , installBashScript ? "" }: pkgs.stdenv.mkDerivation { inherit src pname buildcfg targets; - version = "0.12.0"; # hook: tool/release + version = "0.12.1"; # 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 eb4f1deb..a1ff4c65 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'watcher', ['cpp', 'c'], - version : '0.12.0', # hook: tool/release + version : '0.12.1', # hook: tool/release default_options : ['c_std=c99', 'cpp_std=c++17'], ) subdir('watcher-c') diff --git a/watcher-py/watcher/watcher.py b/watcher-py/watcher/watcher.py index f1606acd..f55b5b67 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.12.0" # hook: tool/release + version = "0.12.1" # 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()}"