Skip to content

Commit bf6a6c9

Browse files
committed
v1.1.2
1 parent ed38201 commit bf6a6c9

File tree

6 files changed

+19
-4
lines changed

6 files changed

+19
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Git LFS Changelog
22

3+
## 1.1.2 (1 March, 2016)
4+
5+
* Fix Base64 issues with `?` #989 (@technoweenie)
6+
* Fix zombie git proc issue #1012 (@rlaakkol)
7+
* Fix problems with files containing unicode characters #1016 (@technoweenie)
8+
* Fix panic in `git cat-file` parser #1006 (@technoweenie)
9+
* Display error messages in non-fatal errors #1028 #1039 #1042 (@technoweenie)
10+
* Fix concurrent map access in progress meter (@technoweenie)
11+
312
## 1.1.1 (4 February, 2016)
413

514
### Features

Nut.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[application]
22

33
name = "git-lfs"
4-
version = "1.1.1"
4+
version = "1.1.2"
55
authors = [
66
"Rick Olson <[email protected]>",
77
"Scott Barron <[email protected]>",

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
git-lfs (1.1.2) stable; urgency=low
2+
3+
* New upstream version
4+
5+
-- Stephen Gelman <[email protected]> Tue, 1 March 2016 14:29:00 +0000
6+
17
git-lfs (1.1.1) stable; urgency=low
28

39
* New upstream version

lfs/lfs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
)
1515

1616
const (
17-
Version = "1.1.1"
17+
Version = "1.1.2"
1818
tempDirPerms = 0755
1919
localMediaDirPerms = 0755
2020
localLogDirPerms = 0755

rpm/SPECS/git-lfs.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: git-lfs
2-
Version: 1.1.1
2+
Version: 1.1.2
33
Release: 1%{?dist}
44
Summary: Git extension for versioning large files
55

script/windows-installer/inno-setup-git-lfs-installer.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "Git LFS"
5-
#define MyAppVersion "1.1.1"
5+
#define MyAppVersion "1.1.2"
66
#define MyAppPublisher "GitHub, Inc"
77
#define MyAppURL "https://git-lfs.github.com/"
88
#define MyAppFilePrefix "git-lfs-windows"

0 commit comments

Comments
 (0)