From 1ccdf7583e4bb442185a3b36ad61231e5e67218f Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Sat, 13 Sep 2025 11:45:02 -0700 Subject: [PATCH] Release 1.0.0 --- Changelog | 5 +++++ default.nix | 2 +- setup.py | 9 +++++++-- 3 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 Changelog 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', ], - } -) + }) -- 2.50.1