Skip to content

Commit 2070e4c

Browse files
authored
release: Git LFS v1.4.1
1 parent 020b0df commit 2070e4c

File tree

7 files changed

+22
-7
lines changed

7 files changed

+22
-7
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Git LFS Changelog
22

3+
## 1.4.1 (26 August, 2016)
4+
5+
### Features
6+
7+
* retry if file download failed #1454 (@larsxschneider)
8+
* Support wrapped clone in current directory #1478 (@ttaylorr)
9+
10+
### Misc
11+
12+
* Test `RetriableReader` #1482 (@ttaylorr)
13+
314
## 1.4.0 (19 August, 2016)
415

516
### Features

ROADMAP.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,12 @@ Git LFS. If you have an idea for a new feature, open an issue for discussion.
88
| | Name | Ref |
99
| ------ | ---- | --- |
1010
| | git index issues | [#937](https://github.com/github/git-lfs/issues/937) |
11-
| :soon: | `authenticated` property on urls | [#960](https://github.com/github/git-lfs/issues/960), [#1452](https://github.com/github/git-lfs/pull/1452) |
1211
| :soon: | Add ref information to upload request | [#969](https://github.com/github/git-lfs/issues/969) |
13-
| :ship: | Accept raw remote URLs as valid | [#1085](https://github.com/github/git-lfs/issues/1085), [#1451](https://github.com/github/git-lfs/issues/1451) |
14-
| :ship: | `config` refactoring | [#1425](https://github.com/github/git-lfs/issues/1425) |
1512
| :soon: | Socks proxy support | [#1424](https://github.com/github/git-lfs/issues/1424) |
1613
| :no_entry_sign: | Not following 301 redirect | [#1129](https://github.com/github/git-lfs/issues/1129) |
1714
| | add all lfs.\* git config keys to git lfs env output | |
1815
| | Teach `git lfs update` how to update the clean/smudge filter values | [#1083](https://github.com/github/git-lfs/pull/1083) |
16+
| | credential output hidden while transferring files | [#387](https://github.com/github/git-lfs/pull/387) |
1917
| | Support multiple git alternates | |
2018
| | Investigate `git lfs checkout` hardlinking instead of copying files. | |
2119
| | Investigate `--shared` and `--dissociate` options for `git clone` (similar to `--references`) | |

config/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
var (
1010
GitCommit string
11-
Version = "1.4.0"
11+
Version = "1.4.1"
1212
VersionDesc string
1313
)
1414

debian/changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
git-lfs (1.4.1) stable; urgency=low
2+
3+
* New upstream version
4+
5+
-- Stephen Gelman <[email protected]> Fri, 26 Aug 2016 14:29:00 +0000
6+
17
git-lfs (1.4.0) stable; urgency=low
28

39
* New upstream version

lfs/lfs.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
)
1818

1919
const (
20-
Version = "1.4.0"
20+
Version = "1.4.1"
2121
)
2222

2323
var (

rpm/SPECS/git-lfs.spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: git-lfs
2-
Version: 1.4.0
2+
Version: 1.4.1
33
Release: 1%{?dist}
44
Summary: Git extension for versioning large files
55

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

+1-1
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.4.0"
5+
#define MyAppVersion "1.4.1"
66
#define MyAppPublisher "GitHub, Inc"
77
#define MyAppURL "https://git-lfs.github.com/"
88
#define MyAppFilePrefix "git-lfs-windows"

0 commit comments

Comments
 (0)