From: Scott Worley Date: Wed, 17 Feb 2021 06:55:26 +0000 (-0800) Subject: Release 3.0.2 X-Git-Tag: v3.0.2 X-Git-Url: http://git.scottworley.com/pinch/commitdiff_plain/6c55232284274d9d8bcf9aa7db1f7a164c7301f9 Release 3.0.2 --- diff --git a/Changelog b/Changelog index cca3d8b..9c49595 100644 --- a/Changelog +++ b/Changelog @@ -1,4 +1,6 @@ ## [Unreleased] + +## [3.0.2] - 2021-02-16 ### Changed - Don't rely on experimental-features=nix-command in system nix.conf diff --git a/default.nix b/default.nix index cda5bb9..20858fa 100644 --- a/default.nix +++ b/default.nix @@ -38,7 +38,7 @@ in pkgs.python3Packages.callPackage ({ lib, buildPythonPackage, nix, git, autopep8, mypy, pylint, git-cache, }: buildPythonPackage rec { pname = "pinch"; - version = "3.0.2-pre"; + version = "3.0.2"; src = lib.cleanSource ./.; propagatedBuildInputs = [ git-cache ]; checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ]; diff --git a/setup.py b/setup.py index 7ecb1bd..562494f 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='pinch', - version='3.0.2-pre', + version='3.0.2', py_modules=['pinch'], entry_points={'console_scripts': ['pinch = pinch:main']}, dependency_links=['https://scottworley.com/git/git-cache'],