Skip to content

Commit fbf952c

Browse files
committed
chore: prepare v2 release
1 parent d29eb91 commit fbf952c

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ and this project adheres to
88

99
## [[Unreleased]]
1010

11+
## [2.0.0] - 2026-04-17
12+
1113
### Added
1214

1315
- `TransactionStatus` field indicating whether the transaction result is a success or destination-related failure.

cmd/indexer/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"github.com/flare-foundation/go-flare-common/pkg/logger"
55
"github.com/flare-foundation/verifier-indexer-framework/pkg/framework"
6-
"github.com/flare-foundation/verifier-xrp-indexer/internal/xrp"
6+
"github.com/flare-foundation/verifier-xrp-indexer/v2/internal/xrp"
77
)
88

99
func main() {

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
module github.com/flare-foundation/verifier-xrp-indexer
1+
module github.com/flare-foundation/verifier-xrp-indexer/v2
22

33
go 1.25.8
44

55
require (
66
github.com/ethereum/go-ethereum v1.14.12
77
github.com/flare-foundation/go-flare-common v1.2.0
8-
github.com/flare-foundation/verifier-indexer-framework v1.1.1-rc.2
8+
github.com/flare-foundation/verifier-indexer-framework v1.1.1
99
github.com/stretchr/testify v1.11.1
1010
)
1111

go.sum

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,8 @@ github.com/ethereum/go-ethereum v1.14.12 h1:8hl57x77HSUo+cXExrURjU/w1VhL+ShCTJrT
2121
github.com/ethereum/go-ethereum v1.14.12/go.mod h1:RAC2gVMWJ6FkxSPESfbshrcKpIokgQKsVKmAuqdekDY=
2222
github.com/flare-foundation/go-flare-common v1.2.0 h1:6xkFMr/qZGMw6ULWw6uaDLhiHls2XK1D/FEVDRFihC8=
2323
github.com/flare-foundation/go-flare-common v1.2.0/go.mod h1:u844RxubdWw9KNXV+1N6aud6lQsYrhg2nz8acJB9MCw=
24-
github.com/flare-foundation/verifier-indexer-framework v1.1.1-rc.0 h1:ssSUNSM4wyCga7g7G4u1k6rSVNEwKsTQ7RSdWYMjeKE=
25-
github.com/flare-foundation/verifier-indexer-framework v1.1.1-rc.0/go.mod h1:XHS/cATTJjZAYmLxfLpjuU2v7G6liuk1pMBd2a5NfHA=
26-
github.com/flare-foundation/verifier-indexer-framework v1.1.1-rc.2 h1:kBzCAiyUunmLZizbcDUQCkwcnmDa4knCVyCG8o5C9AU=
27-
github.com/flare-foundation/verifier-indexer-framework v1.1.1-rc.2/go.mod h1:XHS/cATTJjZAYmLxfLpjuU2v7G6liuk1pMBd2a5NfHA=
24+
github.com/flare-foundation/verifier-indexer-framework v1.1.1 h1:giyIkv4hDFvfKujGZatdK9EOaGIHAGFW2haDepVza4U=
25+
github.com/flare-foundation/verifier-indexer-framework v1.1.1/go.mod h1:XHS/cATTJjZAYmLxfLpjuU2v7G6liuk1pMBd2a5NfHA=
2826
github.com/holiman/uint256 v1.3.2 h1:a9EgMPSC1AAaj1SZL5zIQD3WbwTuHrMGOerLjGmM/TA=
2927
github.com/holiman/uint256 v1.3.2/go.mod h1:EOMSn4q6Nyt9P6efbI3bueV4e1b3dGlUCXeiRV4ng7E=
3028
github.com/jackc/pgpassfile v1.0.0 h1:/6Hmqy13Ss2zCq62VdNG8tM1wchn8zjSGOBJ6icpsIM=

internal/xrp/xrp_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"testing"
88
"time"
99

10-
"github.com/flare-foundation/verifier-xrp-indexer/internal/xrp"
10+
"github.com/flare-foundation/verifier-xrp-indexer/v2/internal/xrp"
1111
"github.com/stretchr/testify/require"
1212
)
1313

0 commit comments

Comments
 (0)