Skip to content

Commit aabe961

Browse files
committed
Version 1.5.0
1 parent 46fe429 commit aabe961

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
Version 1.5.0
2+
=============
3+
4+
* Fix "Unknown SHA1 object" with Git > 2.16.0
5+
* Avoid git warning: empty strings as pathspecs
6+
* The .git-ftp-ignore file contains globs now, not regular expressions
7+
* Make --insecure option override config setting
8+
* Fix bug that can delete the .git folder using `git ftp download` with exclude patterns
9+
* Allow post-ftp-push hooks to pass on failures
10+
* Fixed post hook reference to deployed SHA1
11+
* Add a check covering curl presence and protocol support
12+
* Update INSTALL.md instructions for OS X 10.13.3
13+
* Add suggestion for usage with GIT LFS to documentation
14+
* Add config git-ftp.remote-root to documentation
15+
* Document using SFTP
16+
117
Version 1.4.0
218
=============
319

git-ftp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
readonly DEFAULT_PROTOCOL="ftp"
2525
readonly REMOTE_LCK_FILE="$(basename "$0").lck"
2626
readonly SYSTEM="$(uname)"
27-
readonly VERSION='1.4.1-UNRELEASED'
27+
readonly VERSION='1.5.0'
2828

2929
# ------------------------------------------------------------
3030
# Defaults

man/git-ftp.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
% GIT-FTP(1) Git-ftp 1.4.1-UNRELEASED
22
%
3-
% 2017-09-01
3+
% 2018-05-12
44

55
# NAME
66

tests/git-ftp-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# Or you can write it in one line:
1818
# TEST_CASES='test_displays_usage' GIT_FTP_PASSWD='s3cr3t' ./git-ftp-test.sh
1919

20-
readonly VERSION='1.4.1-UNRELEASED'
20+
readonly VERSION='1.5.0'
2121

2222
suite() {
2323
for testcase in ${TEST_CASES}; do

0 commit comments

Comments
 (0)