This commit is contained in:
risk danger olson 2016-03-01 09:39:20 -07:00
parent ed38201b1a
commit bf6a6c9979
6 changed files with 19 additions and 4 deletions

@ -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

@ -1,7 +1,7 @@
[application]
name = "git-lfs"
version = "1.1.1"
version = "1.1.2"
authors = [
"Rick Olson <technoweenie@gmail.com>",
"Scott Barron <rubyist@github.com>",

6
debian/changelog vendored

@ -1,3 +1,9 @@
git-lfs (1.1.2) stable; urgency=low
* New upstream version
-- Stephen Gelman <gelman@getbraintree.com> Tue, 1 March 2016 14:29:00 +0000
git-lfs (1.1.1) stable; urgency=low
* New upstream version

@ -14,7 +14,7 @@ import (
)
const (
Version = "1.1.1"
Version = "1.1.2"
tempDirPerms = 0755
localMediaDirPerms = 0755
localLogDirPerms = 0755

@ -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

@ -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"