]> git.scottworley.com Git - pinch/commitdiff
Release 3.0.10 v3.0.10
authorScott Worley <scottworley@scottworley.com>
Wed, 23 Nov 2022 09:18:27 +0000 (01:18 -0800)
committerScott Worley <scottworley@scottworley.com>
Wed, 23 Nov 2022 09:25:26 +0000 (01:25 -0800)
Changelog
default.nix
setup.py

index c0c066a61fee1258660f43e94e30e41f24c1f099..dab8eb682c87f22ee7d20d671e42028fffdf626a 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,6 +1,11 @@
 ## [Unreleased]
 
 
+## [3.0.10] - 2022-11-23
+### Changed
+- Small cleanups
+
+
 ## [3.0.9] - 2022-04-16
 ### Fixed
 - Really fix tests after restricted mode support update, whether or not the user has channels.
index 31a63986b2376a9705e80980c08ff92b38f03c76..7744281ae0afb0fe74fe58f1c1a7e62f1e583b66 100644 (file)
@@ -21,7 +21,7 @@ in pkgs.python3Packages.callPackage ({ lib, buildPythonPackage, nix_2_3, git
   , autopep8, makeWrapper, mypy, pylint, git-cache, }:
   buildPythonPackage rec {
     pname = "pinch";
-    version = "3.0.10-pre";
+    version = "3.0.10";
     src = lib.cleanSource ./.;
     buildInputs = [ makeWrapper ];
     propagatedBuildInputs = [ git-cache ];
index 7d28c68d48e291b0000a6eb4b1b364eab47e3884..57fc3b9187feae69789d924aedb875496bad565a 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name='pinch',
-    version='3.0.10-pre',
+    version='3.0.10',
     py_modules=['pinch'],
     entry_points={'console_scripts': ['pinch = pinch:main']},
     dependency_links=['https://scottworley.com/git/git-cache'],