]> git.scottworley.com Git - pinch/commitdiff
Release 3.0.15 v3.0.15
authorScott Worley <scottworley@scottworley.com>
Thu, 21 Mar 2024 22:51:31 +0000 (15:51 -0700)
committerScott Worley <scottworley@scottworley.com>
Thu, 21 Mar 2024 22:53:21 +0000 (15:53 -0700)
I won't sign the tag for this release this time because of nixpkgs bugs:
  https://github.com/NixOS/nixpkgs/issues/115145
  https://github.com/NixOS/nixpkgs/issues/126848

I'll start signing tags again when a fix for this issue
(such as https://github.com/NixOS/nixpkgs/pull/283663 )
is in all stable nixpkgs channels.

Changelog
default.nix
setup.py

index 355d2b1f884231b13e233f7aefc59ec3603073e5..28c4400e08499665294c8bbe38f6037f6cad9490 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,7 @@
 ## [Unreleased]
+
+
+## [3.0.15] - 2024-03-21
 - Fix a bash-ism in test.sh, which is #!/bin/sh
 - Fix setup.py package description
 - Simplify example invocation in README
index 143e57409cdca23ba7713e290571d4f3fc2b027d..bd38eff70fe3427753b83bfb2d85ed23826e0d92 100644 (file)
@@ -25,7 +25,7 @@ in pkgs.python3Packages.callPackage ({ lib, buildPythonPackage, nix_2_3, git
   , autopep8, makeWrapper, mypy, pylint, git-cache, }:
   buildPythonPackage rec {
     pname = "pinch";
-    version = "3.0.15-pre";
+    version = "3.0.15";
     src = lib.cleanSource ./.;
     buildInputs = [ makeWrapper ];
     propagatedBuildInputs = [ git-cache ];
index 50588f111cdc17ec90d74221c90eaa7c2417b1c1..5394f462d45e79505244fc02ddb037aeb26cc07e 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name='pinch',
-    version='3.0.15-pre',
+    version='3.0.15',
     description='PIN CHannels - a replacement for `nix-channel --update`',
     author="Scott Worley",
     author_email="scottworley@scottworley.com",