-
Notifications
You must be signed in to change notification settings - Fork 780
Closed
Description
In this issue we will replace all imports of github.com/tendermint/tendermint/... for github.com/cometbft/cometbft
- main: replace tendermint/tendermint for cometbft/cometbft #142
- 0.37.x: replace tendermint/tendermint for cometbft/cometbft #155
- 0.34.x: replace tendermint/tendermint for cometbft/cometbft #156 + replace tendermint deps in 0.34 #192
General approach
- rename package imports
#gawk -i inplace -f <thisfile> **/*.go
{
if ($0 ~ /github.com\/tendermint\/tendermint/ && $0 !~ /issues/) {
gsub("github.com\/tendermint\/tendermint", "github.com/cometbft/cometbft")
}
print $0
}- update
go.modto providecometbft/cometbftpackage - update
go.modto point totm-load-testto 1.3.0 - update Makefile to reflect the renaming
make mockery- update proto files to generate the right names
make proto-gen
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
renameRenaming our forkRenaming our fork