]> git.scottworley.com Git - pinch/commitdiff
Release 3.0.2 v3.0.2
authorScott Worley <scottworley@scottworley.com>
Wed, 17 Feb 2021 06:55:26 +0000 (22:55 -0800)
committerScott Worley <scottworley@scottworley.com>
Wed, 17 Feb 2021 06:55:26 +0000 (22:55 -0800)
Changelog
default.nix
setup.py

index cca3d8bf89d8ce3463ffc3e87285626de5197c14..9c495955004191cf817bf7399b076cf402d9f397 100644 (file)
--- 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
 
index cda5bb9a39b0a55b427cde20c2a3b644d533aad0..20858fa1d17cef23ff4ef3291f0273f887d3025b 100644 (file)
@@ -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 ];
index 7ecb1bd9faf2d188a7d0c6ffa74096d2af9ae347..562494f04d90a08da2700025a9a1720f275c0da5 100644 (file)
--- 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'],