From 0b502c4027133694e82db9b56eaffbb34fc98642 Mon Sep 17 00:00:00 2001 From: Victor Bayas Date: Sun, 18 Aug 2024 19:42:58 -0500 Subject: [PATCH] Bump to 3.5.1 --- envycontrol.py | 2 +- flake.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/envycontrol.py b/envycontrol.py index 5a82e2b..23273f1 100755 --- a/envycontrol.py +++ b/envycontrol.py @@ -9,7 +9,7 @@ # begin constants definition -VERSION = '3.5.0' +VERSION = '3.5.1' # Note: Do NOT remove this in cleanup! CACHE_FILE_PATH = '/var/cache/envycontrol/cache.json' diff --git a/flake.nix b/flake.nix index dcb528b..9410fcf 100644 --- a/flake.nix +++ b/flake.nix @@ -10,7 +10,7 @@ packages.${system} = { envycontrol = pkgs.python3Packages.buildPythonPackage { pname = "envycontrol"; - version = "3.5.0"; + version = "3.5.1"; src = self; }; default = self.packages.${system}.envycontrol;