diff options
-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 |