From 04ebb2790e3e78c60180e680dd1db5afb006ef42 Mon Sep 17 00:00:00 2001 From: Laurent Raufaste Date: Sat, 21 Mar 2015 15:42:10 -0400 Subject: [PATCH] Mackup 0.8.5 --- CHANGELOG.md | 2 ++ doc/release.md | 8 ++++++++ mackup/constants.py | 2 +- 3 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 doc/release.md diff --git a/CHANGELOG.md b/CHANGELOG.md index f3098c327..30654f8ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## WIP +## Mackup 0.8.5 + - Support for Z (via @jkaan) - Support for GMVault (via @jkaan) - Support for MATLAB (via @danielsuo) diff --git a/doc/release.md b/doc/release.md new file mode 100644 index 000000000..14e05a18e --- /dev/null +++ b/doc/release.md @@ -0,0 +1,8 @@ +# Release + + 1. Move all the WIP changes under a new version in the [changelog](../CHANGELOG.md) + 1. Increment the version in [constants.py](../mackup/constants.py) + 1. `git commit` with the message `Mackup X.Y.Z` + 1. `git tag ` + 1. `git push` + 1. `make release` diff --git a/mackup/constants.py b/mackup/constants.py index b095728e3..852dfcc1a 100644 --- a/mackup/constants.py +++ b/mackup/constants.py @@ -1,6 +1,6 @@ """Constants used in Mackup.""" # Current version -VERSION = '0.8.4' +VERSION = '0.8.5' # Support platforms PLATFORM_DARWIN = 'Darwin'