From fcbd52140b62d1d75bcb905c8295bf6e0b0bcb4e Mon Sep 17 00:00:00 2001 From: Will Date: Sun, 27 Oct 2024 21:20:11 -0400 Subject: [PATCH] release: 0.13.2 --- .version | 2 +- CMakeLists.txt | 2 +- Cargo.toml | 2 +- flake.nix | 2 +- meson.build | 2 +- pyproject.toml | 2 +- watcher-py/watcher/watcher.py | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.version b/.version index c317a91..9beb74d 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.13.1 +0.13.2 diff --git a/CMakeLists.txt b/CMakeLists.txt index 299335e..59ce390 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ cmake_minimum_required(VERSION 3.9) project( wtr.watcher - VERSION 0.13.1 # hook: tool/release + VERSION 0.13.2 # hook: tool/release DESCRIPTION "watcher: a filesystem watcher" HOMEPAGE_URL "github.com/e-dant/watcher" LANGUAGES diff --git a/Cargo.toml b/Cargo.toml index f98094c..81783b2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wtr-watcher" -version = "0.13.1" # hook: tool/release +version = "0.13.2" # hook: tool/release edition = "2021" build = "watcher-rs/build.rs" authors = ["Will "] diff --git a/flake.nix b/flake.nix index 4c38fae..a5c3aa1 100644 --- a/flake.nix +++ b/flake.nix @@ -43,7 +43,7 @@ , installBashScript ? "" }: pkgs.stdenv.mkDerivation { inherit src pname buildcfg targets; - version = "0.13.1"; # hook: tool/release + version = "0.13.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 ad6256b..9ecc701 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'watcher', ['cpp', 'c'], - version : '0.13.1', # hook: tool/release + version : '0.13.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 ee13175..96f8539 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.13.1" # hook: tool/release +version = "0.13.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 3a263d4..490ff7c 100644 --- a/watcher-py/watcher/watcher.py +++ b/watcher-py/watcher/watcher.py @@ -29,7 +29,7 @@ class _CEvent(ctypes.Structure): def _lazy_static_solib_handle() -> ctypes.CDLL: def solib_name(): - version = "0.13.1" # hook: tool/release + version = "0.13.2" # hook: tool/release v_major = version.split(".")[0] sysname = os.uname().sysname if sysname == "Darwin":