Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump kpm version from 0.3.2 to 0.3.3. #150

Merged
merged 1 commit into from
Aug 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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_3_2
KpmVersionType_latest = KpmAbiVersion_0_3_2
KpmAbiVersion KpmVersionType = KpmAbiVersion_0_3_3
KpmVersionType_latest = KpmAbiVersion_0_3_3

KpmAbiVersion_0_3_3 KpmVersionType = "0.3.3"
KpmAbiVersion_0_3_2 KpmVersionType = "0.3.2"
KpmAbiVersion_0_3_1 KpmVersionType = "0.3.1"
KpmAbiVersion_0_3_0 KpmVersionType = "0.3.0"
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.3.2",
want: "0.3.3",
},
}
for _, tt := range tests {
Expand Down
Loading