From 196acd0aca18bbc332be773099ee07a00c896610 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Mon, 3 Feb 2020 11:41:34 -0500 Subject: [PATCH] Release version 0.28.0 --- CHANGES.rst | 9 ++++++++- github_backup/__init__.py | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index d2c249e..a8655d6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,9 +1,16 @@ Changelog ========= -0.27.0 (2020-01-21) +0.28.0 (2020-02-03) ------------------- ------------------------ +- Remove deprecated (and removed) git lfs flags. [smiley] + + "--tags" and "--force" were removed at some point from "git lfs fetch". This broke our backup script. + + +0.27.0 (2020-01-22) +------------------- - Fixed script fails if not installed from pip. [Ben Baron] At the top of the script, the line from github_backup import __version__ gets the script's version number to use if the script is called with the -v or --version flags. The problem is that if the script hasn't been installed via pip (for example I cloned the repo directly to my backup server), the script will fail due to an import exception. diff --git a/github_backup/__init__.py b/github_backup/__init__.py index cf7b6d6..1bf3675 100644 --- a/github_backup/__init__.py +++ b/github_backup/__init__.py @@ -1 +1 @@ -__version__ = '0.27.0' +__version__ = '0.28.0'