From 175e0ccf87e154008e4a3f41576045070c83241a Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Thu, 20 May 2021 00:11:26 -0700 Subject: [PATCH] Release 3.0.3 --- Changelog | 5 +++++ default.nix | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Changelog b/Changelog index 557dab4..ed58b28 100644 --- a/Changelog +++ b/Changelog @@ -1,6 +1,11 @@ ## [Unreleased] + + +## [3.0.3] - 2021-05-20 +### Changed - Don't pass --experimental-features to old nix versions + ## [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 faf4742..8397cb6 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.3-pre"; + version = "3.0.3"; src = lib.cleanSource ./.; propagatedBuildInputs = [ git-cache ]; checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ]; diff --git a/setup.py b/setup.py index 127bd82..70fca63 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='pinch', - version='3.0.3-pre', + version='3.0.3', py_modules=['pinch'], entry_points={'console_scripts': ['pinch = pinch:main']}, dependency_links=['https://scottworley.com/git/git-cache'], -- 2.44.1