From d06746ac2ebf3e4c71c39709e3c0613a24b94e2d Mon Sep 17 00:00:00 2001 From: xenofem Date: Thu, 11 Sep 2025 23:38:34 -0400 Subject: [PATCH] bump version to 0.3 --- flake.nix | 3 ++- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 063d3e8..b5d791c 100644 --- a/flake.nix +++ b/flake.nix @@ -8,6 +8,7 @@ system = "x86_64-linux"; config.allowUnfree = true; }; + project = builtins.fromTOML (builtins.readFile ./pyproject.toml); in { packages.x86_64-linux = with pkgs.python3Packages; rec { dlsite-async = buildPythonPackage rec { @@ -30,7 +31,7 @@ dlibrary = buildPythonApplication { pname = "dlibrary"; - version = "0.2"; + inherit (project) version; pyproject = true; propagatedBuildInputs = [ pymupdf diff --git a/pyproject.toml b/pyproject.toml index ecd28b5..79f74fd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "dlibrary" -version = "0.2" +version = "0.3" description = "Cataloging tool and viewer for downloaded DLSite purchases" license = {file = "LICENSE"} authors = [{name = "xenofem"}]