Skip to content

Commit

Permalink
Merge pull request #41 from anfredette/release-0.5.0-rc1
Browse files Browse the repository at this point in the history
cut v0.5.0-rc1 release
  • Loading branch information
mergify[bot] authored Jul 11, 2024
2 parents 18fc34c + b0ec9d9 commit 0a917ae
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# To re-generate a bundle for another specific version without changing the standard setup, you can:
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
VERSION ?= 0.4.1
VERSION ?= 0.5.0-rc1

# CHANNELS define the bundle channels used in the bundle.
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,4 +182,4 @@ object to find references to the bpfMap pinpoints (`spec.maps`) to configure the
## Developer

For more architecture details about `bpfman-operator`, refer to
[Developing the bpfman-operator](https://bpfman.io/v0.4.1/developer-guide/develop-operator)
[Developing the bpfman-operator](https://bpfman.io/v0.5.0-rc1/developer-guide/develop-operator)
6 changes: 3 additions & 3 deletions bundle/manifests/bpfman-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ metadata:
capabilities: Basic Install
categories: OpenShift Optional
containerImage: quay.io/bpfman/bpfman-operator:v0.0.0
createdAt: "2024-07-01T16:49:31Z"
createdAt: "2024-07-10T22:28:17Z"
operatorframework.io/suggested-namespace-template: |-
{
"apiVersion": "v1",
Expand All @@ -316,7 +316,7 @@ metadata:
operators.operatorframework.io/builder: operator-sdk-v1.27.0
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
repository: https://github.com/bpfman/bpfman
name: bpfman-operator.v0.4.1
name: bpfman-operator.v0.5.0-rc1
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -1131,4 +1131,4 @@ spec:
provider:
name: The bpfman Community
url: https://bpfman.io/
version: 0.4.1
version: 0.5.0-rc1
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.22.0
toolchain go1.22.2

require (
github.com/bpfman/bpfman v0.4.2
github.com/bpfman/bpfman v0.5.0-rc1
github.com/containers/image v3.0.2+incompatible
github.com/go-logr/logr v1.4.2
github.com/google/go-cmp v0.6.0
Expand Down Expand Up @@ -50,7 +50,7 @@ require (
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/gofuzz v1.2.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/google/uuid v1.6.0
github.com/imdario/mergo v0.3.16 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
github.com/blang/semver/v4 v4.0.0 h1:1PFHFE6yCCTv8C1TeyNNarDzntLi7wMI5i/pzqYIsAM=
github.com/blang/semver/v4 v4.0.0/go.mod h1:IbckMUScFkM3pff0VJDNKRiT6TG/YpiHIM2yvyW5YoQ=
github.com/bpfman/bpfman v0.4.2 h1:SddgA8YjtN7JYWUKTbg4i3fjI63kMYwy+ysUiymRE58=
github.com/bpfman/bpfman v0.4.2/go.mod h1:R4M6nzZOohxhWB5M4GkcuESlb09JVmcro39eRnSLvRY=
github.com/bpfman/bpfman v0.5.0-rc1 h1:ilveM/168raaO8jwExVLPjI+dUEbQiogcsjIV+C3qTw=
github.com/bpfman/bpfman v0.5.0-rc1/go.mod h1:AizsT1VkMu7ddVT/7RzUcz83smfDuh0FRgzhkZHj6ZE=
github.com/buger/jsonparser v1.1.1 h1:2PnMjfWD7wBILjqQbt530v576A/cAbQvEW9gGIpYMUs=
github.com/buger/jsonparser v1.1.1/go.mod h1:6RYKKt7H4d4+iWqouImQ9R2FZql3VbhNgx27UK13J/0=
github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs=
Expand Down
4 changes: 2 additions & 2 deletions vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ github.com/beorn7/perks/quantile
# github.com/blang/semver/v4 v4.0.0
## explicit; go 1.14
github.com/blang/semver/v4
# github.com/bpfman/bpfman v0.4.2
## explicit; go 1.21.0
# github.com/bpfman/bpfman v0.5.0-rc1
## explicit; go 1.22.0
github.com/bpfman/bpfman/clients/gobpfman/v1
# github.com/buger/jsonparser v1.1.1
## explicit; go 1.13
Expand Down

0 comments on commit 0a917ae

Please sign in to comment.