Skip to content

Commit bede153

Browse files
committed
Release version 0.4.0
1 parent b1cb2dd commit bede153

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Install
3939
The binary file can be found in the [project releases](https://github.com/webdevops/go-devtool/releases).
4040

4141
```
42-
DOWNLOAD_VERSION=0.3.3
42+
DOWNLOAD_VERSION=0.4.0
4343
DOWNLOAD_OS=linux
4444
DOWNLOAD_ARCH=x64
4545
@@ -123,10 +123,10 @@ gdt mysql:schema:dump --mysql.user root --mysql.password dev db1 db1.sql.gz
123123
gdt mysql:schema:dump --mysql mysql://root:dev@localhost db1 db1.sql.gz
124124

125125
# Dump db1 into db1.sql.gz using remote MySQL on host example.com with user root and password dev
126-
gdt mysql:schema:dump --hostname example.com --mysql.user root --mysql.password dev db1 db1.sql.gz
126+
gdt mysql:schema:dump --mysql.hostname example.com --mysql.user root --mysql.password dev db1 db1.sql.gz
127127

128128
# Dump db1 into db1.sql.gz using remote MySQL with user root and password dev on host example.com using SSH with user foobar
129-
gdt mysql:schema:dump --ssh [email protected] -u root -p dev db1 db1.sql.gz
129+
gdt mysql:schema:dump --ssh [email protected] --mysql.user root --mysql.password dev db1 db1.sql.gz
130130

131131
# Dump db1 into db1.sql.gz using docker-compose container mysql
132132
gdt mysql:schema:dump --docker compose:mysql db1 db1.sql.gz

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const (
1616
// application informations
1717
Name = "godevtool"
1818
Author = "webdevops.io"
19-
Version = "0.3.3"
19+
Version = "0.4.0"
2020

2121
// self update informations
2222
GithubOrganization = "webdevops"

0 commit comments

Comments
 (0)