Skip to content

Commit 4da51e5

Browse files
committed
set module version to v1 to follow semver
1 parent 914ffb0 commit 4da51e5

27 files changed

+51
-51
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ release-dry-run:
163163
### Sim Test ###
164164
###############################################################################
165165

166-
SIMAPP = github.com/crypto-org-chain/cronos/v2/app
166+
SIMAPP = github.com/crypto-org-chain/cronos/app
167167

168168
# Install the runsim binary with a temporary workaround of entering an outside
169169
# directory as the "go get" command ignores the -mod option and will polute the

app/app.go

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -41,21 +41,21 @@ import (
4141
ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported"
4242
ibckeeper "github.com/cosmos/ibc-go/v10/modules/core/keeper"
4343
ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint"
44+
"github.com/crypto-org-chain/cronos/client/docs"
4445
memiavlstore "github.com/crypto-org-chain/cronos/store"
45-
"github.com/crypto-org-chain/cronos/v2/client/docs"
46-
"github.com/crypto-org-chain/cronos/v2/x/cronos"
47-
cronosclient "github.com/crypto-org-chain/cronos/v2/x/cronos/client"
48-
cronoskeeper "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper"
49-
evmhandlers "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper/evmhandlers"
50-
cronosprecompiles "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper/precompiles"
51-
"github.com/crypto-org-chain/cronos/v2/x/cronos/middleware"
46+
"github.com/crypto-org-chain/cronos/x/cronos"
47+
cronosclient "github.com/crypto-org-chain/cronos/x/cronos/client"
48+
cronoskeeper "github.com/crypto-org-chain/cronos/x/cronos/keeper"
49+
evmhandlers "github.com/crypto-org-chain/cronos/x/cronos/keeper/evmhandlers"
50+
cronosprecompiles "github.com/crypto-org-chain/cronos/x/cronos/keeper/precompiles"
51+
"github.com/crypto-org-chain/cronos/x/cronos/middleware"
5252
// force register the extension json-rpc.
53-
_ "github.com/crypto-org-chain/cronos/v2/x/cronos/rpc"
54-
cronostypes "github.com/crypto-org-chain/cronos/v2/x/cronos/types"
55-
e2ee "github.com/crypto-org-chain/cronos/v2/x/e2ee"
56-
e2eekeeper "github.com/crypto-org-chain/cronos/v2/x/e2ee/keeper"
57-
e2eekeyring "github.com/crypto-org-chain/cronos/v2/x/e2ee/keyring"
58-
e2eetypes "github.com/crypto-org-chain/cronos/v2/x/e2ee/types"
53+
_ "github.com/crypto-org-chain/cronos/x/cronos/rpc"
54+
cronostypes "github.com/crypto-org-chain/cronos/x/cronos/types"
55+
e2ee "github.com/crypto-org-chain/cronos/x/e2ee"
56+
e2eekeeper "github.com/crypto-org-chain/cronos/x/e2ee/keeper"
57+
e2eekeyring "github.com/crypto-org-chain/cronos/x/e2ee/keyring"
58+
e2eetypes "github.com/crypto-org-chain/cronos/x/e2ee/types"
5959
"github.com/ethereum/go-ethereum/common"
6060
// Force-load the tracer engines to trigger registration
6161
"github.com/ethereum/go-ethereum/core/vm"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/crypto-org-chain/cronos/v2
1+
module github.com/crypto-org-chain/cronos
22

33
go 1.23.12
44

x/cronos/client/cli/query.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"strings"
66

7-
"github.com/crypto-org-chain/cronos/v2/x/cronos/types"
7+
"github.com/crypto-org-chain/cronos/x/cronos/types"
88
rpctypes "github.com/evmos/ethermint/rpc/types"
99
"github.com/spf13/cobra"
1010

x/cronos/client/cli/tx.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010

1111
icagenesistypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/genesis/types"
1212
icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types"
13-
"github.com/crypto-org-chain/cronos/v2/x/cronos/types"
13+
"github.com/crypto-org-chain/cronos/x/cronos/types"
1414
"github.com/ethereum/go-ethereum/common"
1515
evmtypes "github.com/evmos/ethermint/x/evm/types"
1616
feemarkettypes "github.com/evmos/ethermint/x/feemarket/types"

x/cronos/client/proposal_handler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package client
22

33
import (
4-
"github.com/crypto-org-chain/cronos/v2/x/cronos/client/cli"
4+
"github.com/crypto-org-chain/cronos/x/cronos/client/cli"
55

66
govclient "github.com/cosmos/cosmos-sdk/x/gov/client"
77
)

x/cronos/genesis.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package cronos
33
import (
44
"fmt"
55

6-
"github.com/crypto-org-chain/cronos/v2/x/cronos/keeper"
7-
"github.com/crypto-org-chain/cronos/v2/x/cronos/types"
6+
"github.com/crypto-org-chain/cronos/x/cronos/keeper"
7+
"github.com/crypto-org-chain/cronos/x/cronos/types"
88
"github.com/ethereum/go-ethereum/common"
99

1010
sdk "github.com/cosmos/cosmos-sdk/types"

x/cronos/genesis_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package cronos_test
22

33
import (
4-
"github.com/crypto-org-chain/cronos/v2/x/cronos"
5-
"github.com/crypto-org-chain/cronos/v2/x/cronos/types"
4+
"github.com/crypto-org-chain/cronos/x/cronos"
5+
"github.com/crypto-org-chain/cronos/x/cronos/types"
66
)
77

88
func (suite *CronosTestSuite) TestInitGenesis() {

x/cronos/handler_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"time"
77

88
tmproto "github.com/cometbft/cometbft/proto/tendermint/types"
9-
"github.com/crypto-org-chain/cronos/v2/app"
10-
"github.com/crypto-org-chain/cronos/v2/x/cronos/keeper"
11-
"github.com/crypto-org-chain/cronos/v2/x/cronos/types"
9+
"github.com/crypto-org-chain/cronos/app"
10+
"github.com/crypto-org-chain/cronos/x/cronos/keeper"
11+
"github.com/crypto-org-chain/cronos/x/cronos/types"
1212
"github.com/evmos/ethermint/crypto/ethsecp256k1"
1313
"github.com/stretchr/testify/suite"
1414

x/cronos/keeper/evm.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"math/big"
66

7-
"github.com/crypto-org-chain/cronos/v2/x/cronos/types"
7+
"github.com/crypto-org-chain/cronos/x/cronos/types"
88
"github.com/ethereum/go-ethereum/common"
99
"github.com/ethereum/go-ethereum/core"
1010
"github.com/ethereum/go-ethereum/core/vm"

0 commit comments

Comments
 (0)