Skip to content

Commit fcbd521

Browse files
author
Will
committed
release: 0.13.2
1 parent bf4b6a2 commit fcbd521

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.13.1
1+
0.13.2

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cmake_minimum_required(VERSION 3.9)
1111

1212
project(
1313
wtr.watcher
14-
VERSION 0.13.1 # hook: tool/release
14+
VERSION 0.13.2 # hook: tool/release
1515
DESCRIPTION "watcher: a filesystem watcher"
1616
HOMEPAGE_URL "github.com/e-dant/watcher"
1717
LANGUAGES

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wtr-watcher"
3-
version = "0.13.1" # hook: tool/release
3+
version = "0.13.2" # hook: tool/release
44
edition = "2021"
55
build = "watcher-rs/build.rs"
66
authors = ["Will <[email protected]>"]

flake.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
, installBashScript ? ""
4444
}: pkgs.stdenv.mkDerivation {
4545
inherit src pname buildcfg targets;
46-
version = "0.13.1"; # hook: tool/release
46+
version = "0.13.2"; # hook: tool/release
4747
nativeBuildInputs = build_deps ++ maybe_sys_deps ++ [ snitch ];
4848
env.WTR_WATCHER_USE_SYSTEM_SNITCH = 1;
4949
buildPhase = ''

meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'watcher',
33
['cpp', 'c'],
4-
version : '0.13.1', # hook: tool/release
4+
version : '0.13.2', # hook: tool/release
55
default_options : ['c_std=c99', 'cpp_std=c++17'],
66
)
77
subdir('watcher-c')

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = ["meson >= 0.61.5", "meson-python >= 0.14.0"]
44

55
[project]
66
name = "wtr-watcher"
7-
version = "0.13.1" # hook: tool/release
7+
version = "0.13.2" # hook: tool/release
88
authors = [{name = "Will"}]
99
homepage = "https://github.com/e-dant/watcher"
1010
description = "Filesystem watcher. Works anywhere. Simple, efficient, and friendly."

watcher-py/watcher/watcher.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class _CEvent(ctypes.Structure):
2929

3030
def _lazy_static_solib_handle() -> ctypes.CDLL:
3131
def solib_name():
32-
version = "0.13.1" # hook: tool/release
32+
version = "0.13.2" # hook: tool/release
3333
v_major = version.split(".")[0]
3434
sysname = os.uname().sysname
3535
if sysname == "Darwin":

0 commit comments

Comments
 (0)