Skip to content

Commit 7de0397

Browse files
committed
release v1.1.1
1 parent 94d356c commit 7de0397

File tree

6 files changed

+44
-13
lines changed

6 files changed

+44
-13
lines changed

CHANGELOG.md

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

3+
## 1.1.1 (4 February, 2016)
4+
5+
### Features
6+
7+
* Add copy-on-write support for Linux BTRFS filesystem #952 (@bozaro)
8+
* convert `git://` remotes to LFS servers automatically #964 (@technoweenie)
9+
* Fix `git lfs track` handling of absolute paths. #975 (@technoweenie)
10+
* Allow tunable http client timeouts #977 (@technoweenie)
11+
12+
### Bugs
13+
14+
* Suppress git config warnings for non-LFS keys #861 (@technoweenie)
15+
* Fix fallthrough when `git-lfs-authenticate` returns an error #909 (@sinbad)
16+
* Fix progress bar issue #883 (@pokehanai)
17+
* Support `remote.name.pushurl` config #949 (@sinbad)
18+
* Fix handling of `GIT_DIR` and `GIT_WORK_TREE` #963, #971 (@technoweenie)
19+
* Fix handling of zero length files #966 (@nathanhi)
20+
* Guard against invalid remotes passed to `push` and `pre-push` #974 (@technoweenie)
21+
* Fix race condition in `git lfs pull` #972 (@technoweenie)
22+
23+
### Extra
24+
25+
* Add server API test tool #868 (@sinbad)
26+
* Redo windows installer with innosetup #875 (@strich)
27+
* Pre-built packages are built with Go v1.5.3
28+
329
## 1.1.0 (18 November, 2015)
430

531
* NTLM auth support #820 (@WillHipschman, @technoweenie)

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.0"
4+
version = "1.1.1"
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.1) stable; urgency=low
2+
3+
* New upstream version
4+
5+
-- Stephen Gelman <[email protected]> Wed, 4 Feb 2016 14:29:00 +0000
6+
17
git-lfs (1.1.0) 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.0"
17+
Version = "1.1.1"
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.0
2+
Version: 1.1.1
33
Release: 1%{?dist}
44
Summary: Git extension for versioning large files
55

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

Lines changed: 9 additions & 10 deletions
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.0"
5+
#define MyAppVersion "1.1.1"
66
#define MyAppPublisher "GitHub, Inc"
77
#define MyAppURL "https://git-lfs.github.com/"
88
#define MyAppFilePrefix "git-lfs-windows"
@@ -27,7 +27,7 @@ SolidCompression=yes
2727
DefaultDirName={pf}\{#MyAppName}
2828
UsePreviousAppDir=no
2929
DirExistsWarning=no
30-
DisableReadyPage=True
30+
DisableReadyPage=True
3131
ArchitecturesInstallIn64BitMode=x64
3232
ChangesEnvironment=yes
3333

@@ -55,12 +55,12 @@ var
5555
ExecStdOut: AnsiString;
5656
ResultCode: integer;
5757
58-
begin
58+
begin
5959
TmpFileName := ExpandConstant('{tmp}') + '\git_location.txt';
60-
60+
6161
Exec(
6262
ExpandConstant('{cmd}'),
63-
'/C "for %i in (git.exe) do @echo. %~$PATH:i > "' + TmpFileName + '"',
63+
'/C "for %i in (git.exe) do @echo. %~$PATH:i > "' + TmpFileName + '"',
6464
'', SW_HIDE, ewWaitUntilTerminated, ResultCode
6565
);
6666
@@ -93,9 +93,9 @@ begin
9393
end;
9494
// look for the path with leading and trailing semicolon and with or without \ ending
9595
// Pos() returns 0 if not found
96-
Result := Pos(';' + UpperCase(ParamExpanded) + ';', ';' + UpperCase(OrigPath) + ';') = 0;
96+
Result := Pos(';' + UpperCase(ParamExpanded) + ';', ';' + UpperCase(OrigPath) + ';') = 0;
9797
if Result = True then
98-
Result := Pos(';' + UpperCase(ParamExpanded) + '\;', ';' + UpperCase(OrigPath) + ';') = 0;
98+
Result := Pos(';' + UpperCase(ParamExpanded) + '\;', ';' + UpperCase(OrigPath) + ';') = 0;
9999
end;
100100
101101
// Runs the lfs initialization.
@@ -105,7 +105,7 @@ var
105105
begin
106106
Exec(
107107
ExpandConstant('{cmd}'),
108-
'/C "git lfs install"',
108+
'/C "git lfs install"',
109109
'', SW_HIDE, ewWaitUntilTerminated, ResultCode
110110
);
111111
end;
@@ -116,9 +116,8 @@ var
116116
begin
117117
Exec(
118118
ExpandConstant('{cmd}'),
119-
'/C "git lfs uninstall"',
119+
'/C "git lfs uninstall"',
120120
'', SW_HIDE, ewWaitUntilTerminated, ResultCode
121121
);
122122
Result := True;
123123
end;
124-

0 commit comments

Comments
 (0)