diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ce03675..9466a9be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Git LFS Changelog +## 1.5.0 (17 November, 2016) + +### Features + +* Filter Protocol Support #1617 (@ttaylorr, @larsxschneider) +* Fast directory walk #1616 (@sinbad) +* Allow usage of proxies even when contacting localhost #1605 (@chalstrick) + +### Bugs + +* start reading off the Watch() channel before sending any input #1671 (@technoweenie) +* wait for remote ref commands to exit before returning #1656 (@jjgod, @technoweenie) + +### Misc + +* rewrite new catfilebatch implementation for upcoming gitscanner pkg #1650 (@technoweenie) +* refactor testutils.FileInput so it's a little more clear #1666 (@technoweenie) +* Update the lfs track docs #1642 (@technoweenie) +* Pre push tracing #1638 (@technoweenie) +* Remove `AllGitConfig()` #1634 (@technoweenie) +* README: set minimal required Git version to 1.8.5 #1636 (@larsxschneider) +* 'smudge --info' is deprecated in favor of 'ls-files' #1631 (@technoweenie) +* travis-ci: test GitLFS with ancient Git version #1626 (@larsxschneider) + ## 1.4.4 (24 October, 2016) ### Bugs diff --git a/config/version.go b/config/version.go index e33a6b77..ec9349aa 100644 --- a/config/version.go +++ b/config/version.go @@ -8,7 +8,7 @@ import ( var ( GitCommit string - Version = "1.4.4" + Version = "1.5.0" VersionDesc string ) diff --git a/debian/changelog b/debian/changelog index c33b03fb..0220f7a1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +git-lfs (1.5.0) stable; urgency=low + + * New upstream version + + -- Stephen Gelman Thu, 17 Nov 2016 14:29:00 +0000 + git-lfs (1.4.4) stable; urgency=low * New upstream version diff --git a/lfs/lfs.go b/lfs/lfs.go index 052040cd..e7aa8aeb 100644 --- a/lfs/lfs.go +++ b/lfs/lfs.go @@ -17,7 +17,7 @@ import ( ) const ( - Version = "1.4.4" + Version = "1.5.0" ) var ( diff --git a/rpm/SPECS/git-lfs.spec b/rpm/SPECS/git-lfs.spec index 6164f061..f864bbf5 100644 --- a/rpm/SPECS/git-lfs.spec +++ b/rpm/SPECS/git-lfs.spec @@ -1,5 +1,5 @@ Name: git-lfs -Version: 1.4.4 +Version: 1.5.0 Release: 1%{?dist} Summary: Git extension for versioning large files diff --git a/script/windows-installer/inno-setup-git-lfs-installer.iss b/script/windows-installer/inno-setup-git-lfs-installer.iss index 5bbf8123..aafac395 100644 --- a/script/windows-installer/inno-setup-git-lfs-installer.iss +++ b/script/windows-installer/inno-setup-git-lfs-installer.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "Git LFS" -#define MyAppVersion "1.4.4" +#define MyAppVersion "1.5.0" #define MyAppPublisher "GitHub, Inc" #define MyAppURL "https://git-lfs.github.com/" #define MyAppFilePrefix "git-lfs-windows"