Vincent Driessen | 2d0cbec | 2011-02-06 07:52:43 +0100 | [diff] [blame] | 1 | 0.4.1: |
| 2 | ----- |
Vincent Driessen | 4b5b932 | 2011-02-14 07:44:18 +0100 | [diff] [blame^] | 3 | Release date: **2011/02/04** |
Vincent Driessen | 2d0cbec | 2011-02-06 07:52:43 +0100 | [diff] [blame] | 4 | |
| 5 | * New option `-d` added to `git flow init`, to initialize with defaults without |
Vincent Driessen | 4b5b932 | 2011-02-14 07:44:18 +0100 | [diff] [blame^] | 6 | asking for input interactively. Ideal for creating git-flow enabled repos in |
| 7 | custom scripts. |
Vincent Driessen | 2d0cbec | 2011-02-06 07:52:43 +0100 | [diff] [blame] | 8 | |
| 9 | * The parsing issues related to git-flow feature's flags are now dealt with on |
| 10 | all known platforms. (Fixed #54, #62, #86, #97) |
| 11 | |
| 12 | * Escape queries for detecting branch/tag names. (Fixed #91) |
| 13 | |
| 14 | |
Vincent Driessen | 3d41ea0 | 2010-07-22 16:16:17 +0200 | [diff] [blame] | 15 | 0.4: |
| 16 | --- |
Vincent Driessen | 1c289cf | 2010-10-18 21:46:28 +0200 | [diff] [blame] | 17 | Release date: **2010/10/18** |
Vincent Driessen | 3d41ea0 | 2010-07-22 16:16:17 +0200 | [diff] [blame] | 18 | |
Vincent Driessen | 1c289cf | 2010-10-18 21:46:28 +0200 | [diff] [blame] | 19 | * The flag parsing issues of git-flow subcommands are solved for most |
| 20 | platforms. |
| 21 | |
| 22 | * `git flow {feature,hotfix,release} finish` now takes a `-k` flag, to keep the |
| 23 | branch around after finishing. |
| 24 | |
| 25 | * `git flow release finish` takes a `-n` flag, to skip tagging. |
| 26 | |
| 27 | * For consistency, `git flow {release,hotfix}` now, too, have a `publish` and |
| 28 | `track` subcommand, just like `feature`. |
| 29 | |
| 30 | * Various minor fixes. |
Vincent Driessen | 3d41ea0 | 2010-07-22 16:16:17 +0200 | [diff] [blame] | 31 | |
| 32 | |
Vincent Driessen | 02548fb | 2010-07-22 16:12:26 +0200 | [diff] [blame] | 33 | 0.3: |
| 34 | ---- |
| 35 | Release date: **2010/07/22** |
| 36 | |
Vincent Driessen | 2da8810 | 2010-07-22 16:03:22 +0200 | [diff] [blame] | 37 | * New subcommands for `git flow feature`: |
| 38 | - **checkout**: |
| 39 | For easily checking out features by their short name. Even allows |
| 40 | unique prefixes as arguments (see below). |
| 41 | |
| 42 | - **pull**: |
| 43 | This subcommand allows you to painlessly work on a feature branch |
| 44 | together with another peer. This is especially valuable for doing |
| 45 | peer reviews of other people's code. For more detailed info, see the |
| 46 | [commit log][1]. |
| 47 | |
| 48 | * Easier addressing of branch names by using name prefixes. |
| 49 | For example, when using: |
| 50 | |
Vincent Driessen | 02548fb | 2010-07-22 16:12:26 +0200 | [diff] [blame] | 51 | git flow feature finish fo |
Vincent Driessen | 2da8810 | 2010-07-22 16:03:22 +0200 | [diff] [blame] | 52 | |
| 53 | this automatically finishes the feature branch `foobar` if that's the only |
| 54 | feature branch name starting with `fo`. |
| 55 | |
| 56 | * No force flag anymore for new feature branches |
| 57 | `git flow feature start` lost its `-f` (force) flag. You now don't |
| 58 | have to be in a clean repo anymore to start a new feature branch. This |
| 59 | avoids the manual `git stash`, `git flow feature start`, `git stash |
| 60 | pop` cycle. |
| 61 | |
| 62 | * You can use `git-flow` in stand-alone repo's now. |
| 63 | This means it does not assume you have an `origin` repository. |
Vincent Driessen | 02548fb | 2010-07-22 16:12:26 +0200 | [diff] [blame] | 64 | (Thanks [Mark][2].) |
Vincent Driessen | 2da8810 | 2010-07-22 16:03:22 +0200 | [diff] [blame] | 65 | |
| 66 | * No commands fetch from `origin` by default anymore. |
| 67 | There were some issues related to disabling this flag on some platforms. |
| 68 | |
| 69 | * Init guesses branch names you may want to use for `develop` and `master`. |
| 70 | |
Vincent Driessen | 02548fb | 2010-07-22 16:12:26 +0200 | [diff] [blame] | 71 | * Added super-easy installation script. (Thanks [Rick][3].) |
Vincent Driessen | 2da8810 | 2010-07-22 16:03:22 +0200 | [diff] [blame] | 72 | |
| 73 | * Added BSD license. |
| 74 | |
| 75 | [1]: http://github.com/nvie/gitflow/commit/f68d405cc3a11e9df3671f567658a6ab6ed8e0a1 |
Vincent Driessen | 02548fb | 2010-07-22 16:12:26 +0200 | [diff] [blame] | 76 | [2]: http://github.com/talios |
| 77 | [3]: http://github.com/rickosborne |
Vincent Driessen | 2da8810 | 2010-07-22 16:03:22 +0200 | [diff] [blame] | 78 | |
Vincent Driessen | 02548fb | 2010-07-22 16:12:26 +0200 | [diff] [blame] | 79 | |
| 80 | Older versions |
| 81 | -------------- |
| 82 | No change history is recorded for pre-0.3 releases. |