Skip to content

Commit

Permalink
fix(distribution): rounding fix dep upgrade (#458)
Browse files Browse the repository at this point in the history
rounding fix dep upgrade

issue: none
  • Loading branch information
ezreal1997 authored Jan 18, 2025
1 parent 5da3a5c commit c9c57b2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ replace (
cosmossdk.io/x/evidence => github.com/piplabs/cosmos-sdk/x/evidence v0.1.1-piplabs-v0.2

// Direct cosmos-sdk branch link: https://github.com/piplabs/cosmos-sdk/tree/piplabs/v0.50.7, current branch: piplabs/v0.50.7
github.com/cosmos/cosmos-sdk => github.com/piplabs/cosmos-sdk v0.50.10-piplabs-v0.1
github.com/cosmos/cosmos-sdk => github.com/piplabs/cosmos-sdk v0.50.11-0.20250118021829-7ce4a34e92b1

// See https://github.com/cosmos/cosmos-sdk/pull/14952
// Also https://github.com/cosmos/cosmos-db/blob/main/go.mod#L11-L12
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1032,8 +1032,8 @@ github.com/pierrec/lz4 v1.0.2-0.20190131084431-473cd7ce01a1/go.mod h1:3/3N9NVKO0
github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY=
github.com/pingcap/errors v0.11.4 h1:lFuQV/oaUMGcD2tqt+01ROSmJs75VG1ToEOkZIZ4nE4=
github.com/pingcap/errors v0.11.4/go.mod h1:Oi8TUi2kEtXXLMJk9l1cGmz20kV3TaQ0usTwv5KuLY8=
github.com/piplabs/cosmos-sdk v0.50.10-piplabs-v0.1 h1:ravsZWXTopVQQPyz09bjGlBN9oD0+qQpnUcf1e7LCQ0=
github.com/piplabs/cosmos-sdk v0.50.10-piplabs-v0.1/go.mod h1:6Eesrx3ZE7vxBZWpK++30H+Uc7Q4ahQWCL7JKU/LEdU=
github.com/piplabs/cosmos-sdk v0.50.11-0.20250118021829-7ce4a34e92b1 h1:YUvijH6hGvSA1kTSuwkoZa/mPP8THydPVNc/niqaYEY=
github.com/piplabs/cosmos-sdk v0.50.11-0.20250118021829-7ce4a34e92b1/go.mod h1:6Eesrx3ZE7vxBZWpK++30H+Uc7Q4ahQWCL7JKU/LEdU=
github.com/piplabs/cosmos-sdk/x/evidence v0.1.1-piplabs-v0.2 h1:3WnMps6DSyLChQpO29tPVNEFuXIb/RrCyQSSuWNE2o8=
github.com/piplabs/cosmos-sdk/x/evidence v0.1.1-piplabs-v0.2/go.mod h1:OIQ4Ax/nK/ED36QTnO4LhTslsR4omyvEAXmJcRw7R/Q=
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c h1:+mdjkGKdHQG3305AYmdv1U2eRNDiU2ErMBj1gwrq8eQ=
Expand Down
2 changes: 1 addition & 1 deletion lib/buildinfo/buildinfo.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
const (
VersionMajor = 0 // Major version component of the current release
VersionMinor = 13 // Minor version component of the current release
VersionPatch = 1 // Patch version component of the current release
VersionPatch = 2 // Patch version component of the current release
VersionMeta = "stable" // Version metadata to append to the version string
)

Expand Down

0 comments on commit c9c57b2

Please sign in to comment.