Skip to content

Commit

Permalink
feat: bump kpm version from 0.2.5 to 0.2.6. (#122)
Browse files Browse the repository at this point in the history
* feat: bump kpm version from 0.2.5 to 0.2.6.

* fix: make test happy.
  • Loading branch information
zong-zhe authored Jul 4, 2023
1 parent 2067ede commit 510e59b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ func (kvt KpmVersionType) String() string {

// All the kpm versions.
const (
KpmAbiVersion KpmVersionType = KpmAbiVersion_0_2_5
KpmVersionType_latest = KpmAbiVersion_0_2_5
KpmAbiVersion KpmVersionType = KpmAbiVersion_0_2_6
KpmVersionType_latest = KpmAbiVersion_0_2_6

KpmAbiVersion_0_2_6 KpmVersionType = "0.2.6"
KpmAbiVersion_0_2_5 KpmVersionType = "0.2.5"
KpmAbiVersion_0_2_4 KpmVersionType = "0.2.4"
KpmAbiVersion_0_2_3 KpmVersionType = "0.2.3"
Expand Down
2 changes: 1 addition & 1 deletion pkg/version/version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ func TestGetVersionInStr(t *testing.T) {
}{
{
name: "test get version in string",
want: "0.2.5",
want: "0.2.6",
},
}
for _, tt := range tests {
Expand Down

0 comments on commit 510e59b

Please sign in to comment.