Skip to content

Commit a999185

Browse files
committed
Merge pull request #772 from github/rel-1.0.1
Release 1.0.1
2 parents ac8dd2e + 10084d5 commit a999185

File tree

6 files changed

+31
-7
lines changed

6 files changed

+31
-7
lines changed

CHANGELOG.md

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

3+
## 1.0.1 (23 October, 2015)
4+
5+
* Downcase git config keys (prevents Auth loop) #690 (@WillHipschman)
6+
* Show more info for unexpected http responses #710 (@rubyist)
7+
* Use separate stdout/stderr buffers for `git-lfs-authenticate` #718 (@bozaro)
8+
* Use LoggedError instead of Panic if update-index fails in checkout #735 (@sinbad)
9+
* `smudge` command exits with non-zero if the download fails #732 (@rubyist)
10+
* Use `git rev-parse` to find the git working dir #692 (@sinbad)
11+
* Improved default remote behaviour & validation for fetch/pull #713 (@sinbad)
12+
* Make fetch return error code when 1+ downloads failed #734 (@sinbad)
13+
* Improve lfs.InRepo() detection in `init`/`update` #756 (@technoweenie)
14+
* whitelist the valid keys read from .gitconfig #760 (@technoweenie)
15+
* Teach smudge to use the batch api #711 (@rubyist)
16+
* Fix not setting global attribute when needed to b/c of local state #765 (@sinbad)
17+
* Fix clone fail when fetch is excluded globally #770 (@sinbad)
18+
* Fix for partial downloads problem #763 (@technoweenie)
19+
* Get integration tests passing on Windows #771 (@sinbad)
20+
321
## v1.0 (1 October, 2015)
422

523
* Manual reference is integrated into the "help" options #665 @sinbad

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 = "0.5.3"
4+
version = "1.0.1"
55
authors = [
66
"Rick Olson <[email protected]>",
77
"Scott Barron <[email protected]>",

debian/changelog

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1+
git-lfs (1.0.1) stable; urgency=low
2+
3+
* New upstream version
4+
5+
-- Stephen Gelman <[email protected]> Fri, 23 Oct 2015 14:29:00 +0000
6+
17
git-lfs (1.0.0) stable; urgency=low
28

39
* New upstream version
410

5-
-- Stephen Gelman <[email protected]> Thu, 10 Sep 2015 14:29:00 +0000
11+
-- Stephen Gelman <[email protected]> Thu, 1 Oct 2015 14:29:00 +0000
612

713
git-lfs (0.6.0) stable; urgency=low
814

lfs/lfs.go

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

1515
const (
16-
Version = "1.0.0"
16+
Version = "1.0.1"
1717
tempDirPerms = 0755
1818
localMediaDirPerms = 0755
1919
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.0.0
2+
Version: 1.0.1
33
Release: 1%{?dist}
44
Summary: Git extension for versioning large files
55

script/nsis/installer.nsi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ OutFile "GitLFSInstaller.exe"
33

44
InstallDir $DESKTOP
55

6-
VIProductVersion "1.0.0.0"
7-
VIAddVersionKey FileVersion "1.0.0.0"
8-
VIAddVersionKey ProductVersion "1.0.0.0"
6+
VIProductVersion "1.0.1.0"
7+
VIAddVersionKey FileVersion "1.0.1.0"
8+
VIAddVersionKey ProductVersion "1.0.1.0"
99
VIAddVersionKey ProductName "Git LFS"
1010
VIAddVersionKey Comments "Git LFS"
1111
VIAddVersionKey CompanyName "GitHub, Inc"

0 commit comments

Comments
 (0)