From: Scott Worley Date: Sat, 13 Sep 2025 18:45:02 +0000 (-0700) Subject: Release 1.0.0 X-Git-Tag: v1.0.0 X-Git-Url: http://git.scottworley.com/nix-env-apps/commitdiff_plain/1ccdf7583e4bb442185a3b36ad61231e5e67218f?ds=sidebyside Release 1.0.0 --- diff --git a/Changelog b/Changelog new file mode 100644 index 0000000..1e421ed --- /dev/null +++ b/Changelog @@ -0,0 +1,5 @@ +## [Unreleased] + + +## [1.0.0] - 2025-09-13 +Initial version diff --git a/default.nix b/default.nix index a0d1166..ad68b48 100644 --- a/default.nix +++ b/default.nix @@ -4,7 +4,7 @@ pkgs.python3Packages.callPackage ({ autopep8, buildPythonPackage }: buildPythonPackage rec { pname = "apps"; - version = "1.0"; + version = "1.0.0"; src = lib.cleanSource ./.; diff --git a/setup.py b/setup.py index 63dd5f7..b63a7e9 100644 --- a/setup.py +++ b/setup.py @@ -2,10 +2,15 @@ from setuptools import setup setup( name='apps', + version='1.0.0', + description='A simple GUI for managing declarative nix-env user environments', + author='Scott Worley', + author_email='scottworley@scottworley.com', + url='https://git.scottworley.com/nix-env-apps', + license='GPL-3.0', py_modules=['apps'], entry_points={ 'console_scripts': [ 'apps = apps:main', ], - } -) + })