Skip to content

Commit

Permalink
release: 0.12.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Will committed Oct 16, 2024
1 parent 6b233fb commit d2fd271
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.1
0.12.2
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ''
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -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')
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down
2 changes: 1 addition & 1 deletion watcher-py/watcher/watcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -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":
Expand Down

0 comments on commit d2fd271

Please sign in to comment.