Skip to content

Commit 9cfeba2

Browse files
author
gitopia1c2zfrmhra3spfrc2m5ft64hef30guf60lvtcm3
committed
Merge pull request #10 from git-remote-gitopia/release-v1.6.0
2 parents adab2b0 + bba55b4 commit 9cfeba2

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes will be documented here.
44

5+
## [v1.6.0] - 2023-06-07
6+
7+
- fix os keyring wallet in case of feegrant
8+
- use gitopia-go instead of cosmosclient for os keyring wallet support
9+
510
## [v1.5.0] - 2023-05-17
611

712
- git credential helper for git lfs

core/util.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,10 @@ func GitCommand(name string, args ...string) (*exec.Cmd, io.Reader) {
2323
cmd := exec.Command(name, args...)
2424
cmd.Env = os.Environ()
2525

26-
cmd.Stdout = os.Stdout
27-
cmd.Stderr = os.Stderr
28-
return cmd, nil
26+
r, _ := cmd.StdoutPipe()
27+
cmd.Stderr = cmd.Stdout
28+
29+
return cmd, r
2930
}
3031

3132
func CleanUpProcessGroup(cmd *exec.Cmd) {

go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.19
44

55
require (
66
github.com/cosmos/cosmos-sdk v0.46.12
7-
github.com/gitopia/gitopia-go v0.3.4-0.20230606152806-95aa197de17e
7+
github.com/gitopia/gitopia-go v0.4.0
88
github.com/gitopia/gitopia/v2 v2.0.1
99
github.com/go-git/go-git/v5 v5.5.1
1010
github.com/pkg/errors v0.9.1
@@ -176,5 +176,3 @@ require (
176176
replace github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
177177

178178
replace github.com/tendermint/tendermint => github.com/cometbft/cometbft v0.34.27
179-
180-
replace github.com/ignite/cli => github.com/gitopia/ignite-cli v0.24.0-fee-grant.4

go.sum

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -204,12 +204,8 @@ github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4
204204
github.com/fsnotify/fsnotify v1.5.4 h1:jRbGcIw6P2Meqdwuo0H1p6JVLbL5DHKAKlYndzMwVZI=
205205
github.com/fsnotify/fsnotify v1.5.4/go.mod h1:OVB6XrOHzAwXMpEM7uPOzcehqUV2UqJxmVXmkdnm1bU=
206206
github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
207-
github.com/gitopia/gitopia-go v0.3.3 h1:hXPj00AJ9Rqfrvv8XoOUrcFGLT7Pkbz1fdt9b/LfkvM=
208-
github.com/gitopia/gitopia-go v0.3.3/go.mod h1:1in+bQqP/CFduTIvJbB8WowPGRBhvyFkp+ZhBddutt0=
209-
github.com/gitopia/gitopia-go v0.3.4-0.20230606040529-35a837b457c9 h1:YRw8ZTqK8CZ3W4cys2yvsomCDko5VQXE7jPsdGtexNw=
210-
github.com/gitopia/gitopia-go v0.3.4-0.20230606040529-35a837b457c9/go.mod h1:1in+bQqP/CFduTIvJbB8WowPGRBhvyFkp+ZhBddutt0=
211-
github.com/gitopia/gitopia-go v0.3.4-0.20230606152806-95aa197de17e h1:8sE+tXxZDvbuuBxCWMAIpGukL5BklOYSoL9b44QOiqc=
212-
github.com/gitopia/gitopia-go v0.3.4-0.20230606152806-95aa197de17e/go.mod h1:1in+bQqP/CFduTIvJbB8WowPGRBhvyFkp+ZhBddutt0=
207+
github.com/gitopia/gitopia-go v0.4.0 h1:vuKVlUDKqUlK6wz5n/Lbn6q0H7+4v0PzI1DBnxKFpbE=
208+
github.com/gitopia/gitopia-go v0.4.0/go.mod h1:1in+bQqP/CFduTIvJbB8WowPGRBhvyFkp+ZhBddutt0=
213209
github.com/gitopia/gitopia/v2 v2.0.1 h1:SeHwKkUkA+bqEzsgVimsOb5v6A1wL6O0zqQg/PSSl5c=
214210
github.com/gitopia/gitopia/v2 v2.0.1/go.mod h1:ZEEo2wHSxjJL3tcGg+ZenFlYMhfqFzwJkGkNMkgA9lE=
215211
github.com/gliderlabs/ssh v0.3.5 h1:OcaySEmAQJgyYcArR+gGGTHCyE7nvhEMTlYY+Dp8CpY=

0 commit comments

Comments
 (0)