Skip to content

Commit

Permalink
release: 0.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Will committed Oct 24, 2024
1 parent bb8f51c commit c855d76
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.13.0
0.13.1
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.13.0 # hook: tool/release
VERSION 0.13.1 # hook: tool/release
DESCRIPTION "watcher: a filesystem watcher"
HOMEPAGE_URL "github.com/e-dant/watcher"
LANGUAGES
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wtr-watcher"
version = "0.13.0" # hook: tool/release
version = "0.13.1" # hook: tool/release
edition = "2021"
build = "watcher-rs/build.rs"
authors = ["Will <edant.io@protonmail.com>"]
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.13.0"; # hook: tool/release
version = "0.13.1"; # 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.13.0', # hook: tool/release
version : '0.13.1', # 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.13.0" # hook: tool/release
version = "0.13.1" # 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 @@ -29,7 +29,7 @@ class _CEvent(ctypes.Structure):

def _lazy_static_solib_handle() -> ctypes.CDLL:
def solib_name():
version = "0.13.0" # hook: tool/release
version = "0.13.1" # hook: tool/release
v_major = version.split(".")[0]
sysname = os.uname().sysname
if sysname == "Darwin":
Expand Down

0 comments on commit c855d76

Please sign in to comment.