From a18858f8e34d8bd95be357e9516301ca8782233b Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Thu, 21 Mar 2024 15:51:31 -0700 Subject: [PATCH] Release 3.0.15 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 | 3 +++ default.nix | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Changelog b/Changelog index 355d2b1..28c4400 100644 --- 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 diff --git a/default.nix b/default.nix index 143e574..bd38eff 100644 --- a/default.nix +++ b/default.nix @@ -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 ]; diff --git a/setup.py b/setup.py index 50588f1..5394f46 100644 --- 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", -- 2.44.1