From edc05165103ce280fe4a3ffcee4db423fa214593 Mon Sep 17 00:00:00 2001
From: Scott Worley <scottworley@scottworley.com>
Date: Tue, 25 Aug 2020 22:46:42 -0700
Subject: [PATCH] Release 1.2.3

---
 Changelog   | 3 +++
 default.nix | 2 +-
 setup.py    | 2 +-
 3 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/Changelog b/Changelog
index eff794e..59f276a 100644
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,7 @@
 ## [Unreleased]
+
+
+## [1.2.3] - 2020-08-25
 ### Changed
 - Fixed stray output from repo creation
 
diff --git a/default.nix b/default.nix
index 6f7e8c5..7c0167e 100644
--- a/default.nix
+++ b/default.nix
@@ -22,7 +22,7 @@ in pkgs.python3Packages.callPackage
 ({ lib, buildPythonPackage, nix, git, backoff, autopep8, mypy, pylint, }:
   buildPythonPackage rec {
     pname = "git-cache";
-    version = "1.2.3-pre";
+    version = "1.2.3";
     src = lib.cleanSource ./.;
     propagatedBuildInputs = [ backoff ];
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
diff --git a/setup.py b/setup.py
index da870f0..a08647a 100644
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name="git_cache",
-    version="1.2.3-pre",
+    version="1.2.3",
     entry_points={'console_scripts': ['git-cache = git_cache:_main']},
     py_modules=['git_cache'],
 )
-- 
2.47.2