diff --git a/CHANGELOG.md b/CHANGELOG.md index 8359312d..cf3b1fc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Git LFS Changelog +## 1.1.2 (1 March, 2016) + +* Fix Base64 issues with `?` #989 (@technoweenie) +* Fix zombie git proc issue #1012 (@rlaakkol) +* Fix problems with files containing unicode characters #1016 (@technoweenie) +* Fix panic in `git cat-file` parser #1006 (@technoweenie) +* Display error messages in non-fatal errors #1028 #1039 #1042 (@technoweenie) +* Fix concurrent map access in progress meter (@technoweenie) + ## 1.1.1 (4 February, 2016) ### Features diff --git a/Nut.toml b/Nut.toml index ca74e3a1..e55ac807 100644 --- a/Nut.toml +++ b/Nut.toml @@ -1,7 +1,7 @@ [application] name = "git-lfs" -version = "1.1.1" +version = "1.1.2" authors = [ "Rick Olson ", "Scott Barron ", diff --git a/debian/changelog b/debian/changelog index 0939751e..08e955e1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +git-lfs (1.1.2) stable; urgency=low + + * New upstream version + + -- Stephen Gelman Tue, 1 March 2016 14:29:00 +0000 + git-lfs (1.1.1) stable; urgency=low * New upstream version diff --git a/lfs/lfs.go b/lfs/lfs.go index cd6a86c7..2ea76b5a 100644 --- a/lfs/lfs.go +++ b/lfs/lfs.go @@ -14,7 +14,7 @@ import ( ) const ( - Version = "1.1.1" + Version = "1.1.2" tempDirPerms = 0755 localMediaDirPerms = 0755 localLogDirPerms = 0755 diff --git a/rpm/SPECS/git-lfs.spec b/rpm/SPECS/git-lfs.spec index 5f7dbe07..96031842 100644 --- a/rpm/SPECS/git-lfs.spec +++ b/rpm/SPECS/git-lfs.spec @@ -1,5 +1,5 @@ Name: git-lfs -Version: 1.1.1 +Version: 1.1.2 Release: 1%{?dist} Summary: Git extension for versioning large files diff --git a/script/windows-installer/inno-setup-git-lfs-installer.iss b/script/windows-installer/inno-setup-git-lfs-installer.iss index 61b9a404..e910069d 100644 --- a/script/windows-installer/inno-setup-git-lfs-installer.iss +++ b/script/windows-installer/inno-setup-git-lfs-installer.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "Git LFS" -#define MyAppVersion "1.1.1" +#define MyAppVersion "1.1.2" #define MyAppPublisher "GitHub, Inc" #define MyAppURL "https://git-lfs.github.com/" #define MyAppFilePrefix "git-lfs-windows"