8000 Replace all instances of `github.com/tendermint/tendermint` dependencies · Issue #126 · cometbft/cometbft · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
Replace all instances of github.com/tendermint/tendermint dependencies #126
Closed
@lasarojc

Description

@lasarojc

In this issue we will replace all imports of github.com/tendermint/tendermint/... for github.com/cometbft/cometbft

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.mod to provide cometbft/cometbft package
  • update go.mod to point to tm-load-test to 1.3.0
  • update Makefile to reflect the renaming
  • make mockery
  • update proto files to generate the right names
  • make proto-gen

Metadata

Metadata

Assignees

Labels

renameRenaming our fork

Type

No type

Projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions

    0