diff options
| author | Teddy Wing | 2018-04-20 00:50:36 +0200 |
|---|---|---|
| committer | Teddy Wing | 2018-04-20 00:50:36 +0200 |
| commit | 45f6fd06dcc71a349c4c421698e247ed3cd26ee2 (patch) | |
| tree | 8305385297952eda2d2d66376ff6fa4ae67e8dff | |
| parent | d53b95e8698031ba13d9fcb3fad6732a93729888 (diff) | |
| download | git-branch-list-45f6fd06dcc71a349c4c421698e247ed3cd26ee2.tar.bz2 | |
Increase version v0.1.0 -> v0.1.1v0.1.1
| -rw-r--r-- | CHANGELOG | 9 | ||||
| -rwxr-xr-x | git-branch-list | 2 |
2 files changed, 10 insertions, 1 deletions
@@ -1,6 +1,15 @@ CHANGELOG ========= +v0.1.1 (2018-04-19): + Fixes: + + * Prevent `drop` from removing all branches matching the same pattern. + * Match whole instead of partial branch names in `save` to prevent an error + when trying to save different branches with similar names. + * Fix `drop` bug that prevented branches containing slashes ("/") from being + dropped. + v0.1.0 (2018-03-21): Additions: diff --git a/git-branch-list b/git-branch-list index cce35e3..13b3ed1 100755 --- a/git-branch-list +++ b/git-branch-list @@ -19,7 +19,7 @@ # along with this program. If not, see <https://www.gnu.org/licenses/>. DATABASE=.git/info/git-branch-list -VERSION=0.1.0 +VERSION=0.1.1 function initialise_database () { if [ -d .git ]; then |
