Skip to content

Commit

Permalink
release: 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Will committed Oct 7, 2024
1 parent 3dd9e57 commit 740eb38
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.0
0.12.0
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.11.0 # hook: tool/release
VERSION 0.12.0 # 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.11.0"; # hook: tool/release
version = "0.12.0"; # 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 watcher-py/watcher/watcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def native_solib_file_ending():
return "so"

def libwatcher_c_lib_path():
version = "0.11.0" # hook: tool/release
version = "0.12.0" # 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()}"
Expand Down

0 comments on commit 740eb38

Please sign in to comment.