bump version to 0.3

This commit is contained in:
xenofem 2025-09-11 23:38:34 -04:00
parent bede558347
commit d06746ac2e
2 changed files with 3 additions and 2 deletions

View file

@ -8,6 +8,7 @@
system = "x86_64-linux"; system = "x86_64-linux";
config.allowUnfree = true; config.allowUnfree = true;
}; };
project = builtins.fromTOML (builtins.readFile ./pyproject.toml);
in { in {
packages.x86_64-linux = with pkgs.python3Packages; rec { packages.x86_64-linux = with pkgs.python3Packages; rec {
dlsite-async = buildPythonPackage rec { dlsite-async = buildPythonPackage rec {
@ -30,7 +31,7 @@
dlibrary = buildPythonApplication { dlibrary = buildPythonApplication {
pname = "dlibrary"; pname = "dlibrary";
version = "0.2"; inherit (project) version;
pyproject = true; pyproject = true;
propagatedBuildInputs = [ propagatedBuildInputs = [
pymupdf pymupdf

View file

@ -1,6 +1,6 @@
[project] [project]
name = "dlibrary" name = "dlibrary"
version = "0.2" version = "0.3"
description = "Cataloging tool and viewer for downloaded DLSite purchases" description = "Cataloging tool and viewer for downloaded DLSite purchases"
license = {file = "LICENSE"} license = {file = "LICENSE"}
authors = [{name = "xenofem"}] authors = [{name = "xenofem"}]