]> git.scottworley.com Git - pinch/commitdiff
Release 2.1.0 2.1.0
authorScott Worley <scottworley@scottworley.com>
Tue, 30 Jun 2020 20:34:31 +0000 (13:34 -0700)
committerScott Worley <scottworley@scottworley.com>
Tue, 30 Jun 2020 20:34:31 +0000 (13:34 -0700)
Changelog
default.nix
setup.py

index 6c0cdf812fd6616948ce2b15f1c7d72bd18fa38e..11afedc0ab06c58d35641b635946256e36e9446d 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,7 +1,11 @@
 ## [Unreleased]
+
+
+## [2.1.0] - 2020-06-30
 ### Added
 - Specify profile path with --profile
 
+
 ## [2.0.0] - 2020-06-17
 ### Changed
 - Config sections must now specify their type explicitly
index 9e2a5f14706c3f924d9e4128194be1df6d458fec..dcd9c6627680d7d873ce8d402911114d680b89e5 100644 (file)
@@ -3,7 +3,7 @@ pkgs.python3Packages.callPackage
 ({ lib, buildPythonPackage, nix, git, autopep8, mypy, pylint, }:
   buildPythonPackage rec {
     pname = "pinch";
-    version = "2.1.0-pre";
+    version = "2.1.0";
     src = lib.cleanSource ./.;
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
     doCheck = true;
index 342ed977d208a1ba7ae62d3095eb65d108e3df73..a46092146c88746bbf63502e3ae9d741c39563f8 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name="pinch",
-    version="2.1.0-pre",
+    version="2.1.0",
     py_modules=['pinch'],
     entry_points={"console_scripts": ["pinch = pinch:main"]},
 )