Skip to content

Commit dad7b9e

Browse files
authored
Merge pull request git-lfs#4221 from git-lfs/release-next
release: v2.12.0
2 parents 4f70d99 + 5adff76 commit dad7b9e

File tree

5 files changed

+60
-4
lines changed

5 files changed

+60
-4
lines changed

CHANGELOG.md

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

3+
## 2.12.0 (1 Sep 2020)
4+
5+
This release introduces several new features, such as support for the SHA-256
6+
repositories coming in a future version of Git, restored support for Go 1.11,
7+
the ability to read the contents of .lfsconfig from the repository, signed and
8+
notarized binaries on macOS, and pre-built 32-bit ARM binaries on Linux. In
9+
addition, several bugs have been fixed and miscellaneous fixes included.
10+
11+
Note that macOS releases are now shipped as zip files, not tarballs, since it is
12+
not possible to notarize tarballs. macOS releases are now also built on macOS,
13+
so `git lfs dedup` should now function.
14+
15+
We would like to extend a special thanks to the following open-source
16+
contributors:
17+
18+
* @saracen for adding support for ARM binaries
19+
* @mversluys for improving locking support
20+
* @cccfeng for updating our documentation to make it more readable
21+
* @bluekeyes for improving performance and tracing
22+
* @gertcuykens for adding missing parts of our documentation
23+
24+
### Features
25+
26+
* config: optionally read .lfsconfig from the repository #4200 (@bk2204)
27+
* Support SHA-256 repositories #4186 (@bk2204)
28+
* allow Go 1.11 builds by using WaitStatus.ExitStatus() #4183 (@chrisd8088)
29+
* add --worktree option to install and uninstall commands #4159 (@chrisd8088)
30+
* Sign and notarize binaries on macOS #4143 (@bk2204)
31+
* Makefile: add linux arm build and release targets #4126 (@saracen)
32+
* Allow locking and unlocking non-existent files #3992 (@mversluys)
33+
34+
### Bugs
35+
36+
* docs/api/locking: add an explicit <br> #4208 (@cccfeng)
37+
* Fix hang when the user lacks permissions #4207 (@bk2204)
38+
* Don't mark unlocked files that aren't lockable as read-only #4171 (@bk2204)
39+
* locking: make patterns with slashes work on Windows #4139 (@bk2204)
40+
* git: consider full refspec when determining seen refs #4133 (@bk2204)
41+
42+
### Misc
43+
44+
* Fix Windows CI #4199 (@bk2204)
45+
* Fix testsuite when working with non-master default branch #4174 (@bk2204)
46+
* git: improve performance of remote ref listing #4176 (@bluekeyes)
47+
* subprocess: trace all command execution #4175 (@bluekeyes)
48+
* Update git-lfs-migrate.1.ronn #3869 (@gertcuykens)
49+
* t: use repo v1 with extensions #4177 (@bk2204)
50+
* Makefile: ensure temp Go modules can be deleted #4157 (@chrisd8088)
51+
* Improve test suite robustness via environment #4132 (@bk2204)
52+
353
## 2.11.0 (8 May 2020)
454

555
This release introduces several new features, such as better support for unnamed

config/version.go

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

1515
const (
16-
Version = "2.11.0"
16+
Version = "2.12.0"
1717
)
1818

1919
func init() {

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
git-lfs (2.12.0) stable; urgency=low
2+
3+
* New upstream version
4+
5+
-- brian m. carlson <[email protected]> Tue, 1 Sep 2020 14:29:00 -0000
6+
17
git-lfs (2.11.0) stable; urgency=low
28

39
* New upstream version

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: 2.11.0
2+
Version: 2.12.0
33
Release: 1%{?dist}
44
Summary: Git extension for versioning large files
55

versioninfo.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"FileVersion": {
55
"Major": 2,
6-
"Minor": 11,
6+
"Minor": 12,
77
"Patch": 0,
88
"Build": 0
99
}
@@ -13,7 +13,7 @@
1313
"FileDescription": "Git LFS",
1414
"LegalCopyright": "GitHub, Inc. and Git LFS contributors",
1515
"ProductName": "Git Large File Storage (LFS)",
16-
"ProductVersion": "2.11.0"
16+
"ProductVersion": "2.12.0"
1717
},
1818
"IconPath": "script/windows-installer/git-lfs-logo.ico"
1919
}

0 commit comments

Comments
 (0)