Skip to content
This repository was archived by the owner on May 9, 2025. It is now read-only.

Commit 86f27b4

Browse files
committed
using the right version
1 parent f9f0fa9 commit 86f27b4

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

docs/release_notes/v0.10.1.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Release 0.10.1
2+
3+
- fix: removing reconciliation status (#83)

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ require (
3636
github.com/go-logr/logr v1.2.4
3737
github.com/google/go-github/v52 v52.0.0
3838
github.com/open-component-model/ocm v0.4.0
39-
github.com/open-component-model/ocm-controller v0.16.1-0.20231115142704-81cfce8cc592
39+
github.com/open-component-model/ocm-controller v0.16.1
4040
github.com/stretchr/testify v1.8.4
4141
golang.org/x/oauth2 v0.11.0
4242
k8s.io/api v0.28.1

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1226,8 +1226,8 @@ github.com/onsi/gomega v1.27.10 h1:naR28SdDFlqrG6kScpT8VWpu1xWY5nJRCF3XaYyBjhI=
12261226
github.com/onsi/gomega v1.27.10/go.mod h1:RsS8tutOdbdgzbPtzzATp12yT7kM5I5aElG3evPbQ0M=
12271227
github.com/open-component-model/ocm v0.4.0 h1:S+rPJGoDnSvxhBn3QS2HXURxugTjCM4XWEJLZSaH6Ek=
12281228
github.com/open-component-model/ocm v0.4.0/go.mod h1:7RAqaUMmA4BlwW5ZEUBm8amWIb1TL9FhNigNXQ6wiu0=
1229-
github.com/open-component-model/ocm-controller v0.16.1-0.20231115142704-81cfce8cc592 h1:G9X+Fv/kEAxCZUUJJy5uPJfpnMHmAsLwq5RKfEjsEog=
1230-
github.com/open-component-model/ocm-controller v0.16.1-0.20231115142704-81cfce8cc592/go.mod h1:lYax3VEjWAZ7qEr90opJQl+qm/gO3wIeoz1WSEdje2c=
1229+
github.com/open-component-model/ocm-controller v0.16.1 h1:Vr04cTivp/kBYktTwDMG4FgmpIS+DdgxX1QnBdBp/hA=
1230+
github.com/open-component-model/ocm-controller v0.16.1/go.mod h1:lYax3VEjWAZ7qEr90opJQl+qm/gO3wIeoz1WSEdje2c=
12311231
github.com/opencontainers/go-digest v0.0.0-20170106003457-a6d0ee40d420/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s=
12321232
github.com/opencontainers/go-digest v0.0.0-20180430190053-c9281466c8b2/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s=
12331233
github.com/opencontainers/go-digest v1.0.0-rc1/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s=

pkg/version/release.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
package version
66

77
// ReleaseVersion is the version number in semver format "vX.Y.Z", prefixed with "v".
8-
var ReleaseVersion = "v0.10.0"
8+
var ReleaseVersion = "v0.10.1"
99

1010
// ReleaseCandidate is the release candidate ID in format "rc.X", which will be appended to the release version.
1111
var ReleaseCandidate = "rc.1"

0 commit comments

Comments
 (0)