Skip to content

Commit 770d57e

Browse files
committed
Release 1.3.0
1 parent 38e3cd9 commit 770d57e

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
Version 1.3.0
2+
=============
3+
4+
* FTPES support for submodules
5+
* Fix submodule bugs by quoting argument correctly
6+
* Include algorithm is now independent of ignore list
7+
* Include algorithm reads leading `/` as root of the repository like Git
8+
* Support for `pre-ftp-push` and `post-ftp-push` hooks
9+
* Performance improvements in generating file list
10+
* Allow file names to start with `-`
11+
* New `--changed-only` parameter for pull action
12+
* New "snapshot" action
13+
* Improved test setup comes with vsftpd configuration file
14+
115
Version 1.2.0-rc.1
216
==================
317

@@ -15,7 +29,6 @@ New features:
1529
* Pull feature
1630
* Download feature using lftp
1731

18-
1932
Version 1.1.0-rc.1
2033
==================
2134

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.3.0-UNRELEASED'
27+
readonly VERSION='1.3.0'
2828

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

tests/git-ftp-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ test_displays_usage() {
9494

9595
test_prints_version() {
9696
version=$($GIT_FTP_CMD 2>&1 --version)
97-
assertEquals "git-ftp version 1.3.0-UNRELEASED" "$version"
97+
assertEquals "git-ftp version 1.3.0" "$version"
9898
}
9999

100100
test_inits() {

0 commit comments

Comments
 (0)