From 8990580cd0c31bddf65e89973e7ba0e3bf1085c5 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sun, 7 Jun 2015 01:33:38 -0400 Subject: [PATCH] Added a changelog. --- CHANGELOG | 37 +++++++++++++++++++++++++++++++++++++ gitup/__init__.py | 2 +- 2 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 0000000..6889f0e --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,37 @@ +v0.3 (unreleased): + +- Added support for Python 3. +- Fixed behavior on bare repositories. +- Made branch updating code safer in general: only fast-forwardable branches + tracking upstreams are updated. This deprecates `--merge` and `--rebase`. +- Added `--fetch-only` to disable branch updating entirely, if desired. +- Fixed trying to fetch remotes without configured refspecs. +- Miscellaneous fixes and tweaks. + +v0.2.4 (released May 23, 2015): + +- Follow the XDG Base Directory Specification for the config file. +- Added installation instructions for Homebrew. + +v0.2.3 (released March 14, 2015): + +- Added support for newer versions of GitPython. + +v0.2.2 (released April 27, 2014): + +- Fixed an error being raised when HEAD is detached. + +v0.2.1 (released April 21, 2014): + +- Fixed a bug when handling errors during a fetch. + +v0.2 (released April 21, 2014): + +- Rewrote backend to use GitPython instead of direct shell calls. Improved + stability and fixed various bugs. +- Use colorama for highlighting instead of ANSI escape codes. +- Added `--current-only`, `--merge`, and `--rebase` options. + +v0.1 (released June 7, 2011): + +- Initial release. diff --git a/gitup/__init__.py b/gitup/__init__.py index 0e4e734..9a1d295 100644 --- a/gitup/__init__.py +++ b/gitup/__init__.py @@ -10,5 +10,5 @@ gitup: the git repository updater __author__ = "Ben Kurtovic" __copyright__ = "Copyright (C) 2011-2015 Ben Kurtovic" __license__ = "MIT License" -__version__ = "0.2.5.dev0" +__version__ = "0.3.dev0" __email__ = "ben.kurtovic@gmail.com"