Skip to content

Commit

Permalink
Release v0.1.32
Browse files Browse the repository at this point in the history
  • Loading branch information
rhmdnd committed Oct 24, 2022
1 parent fd0c9a5 commit 3248b81
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic
Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.32] - 2022-10-24
### Changes
- Makefile: Update OPM version to 1.20.0
- Fix deployment on OCP 4.6
- Fix make release-images to properly tag `latest`

## [0.1.31] - 2022-10-17
### Changes
- Use go-install to fetch kustomize
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ metadata:
]
capabilities: Seamless Upgrades
categories: Monitoring,Security
olm.skipRange: '>=0.1.6 <0.1.31'
olm.skipRange: '>=0.1.6 <0.1.32'
operatorframework.io/cluster-monitoring: "true"
operatorframework.io/suggested-namespace: openshift-file-integrity
operators.openshift.io/infrastructure-features: '["disconnected", "fips"]'
Expand All @@ -32,7 +32,7 @@ metadata:
operatorframework.io/arch.s390x: supported
operatorframework.io/os.linux: supported
operatorframework.io/os.zos: supported
name: file-integrity-operator.v0.1.31
name: file-integrity-operator.v0.1.32
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -96,7 +96,7 @@ spec:
value: file-integrity-operator
- name: RELATED_IMAGE_OPERATOR
value: quay.io/file-integrity-operator/file-integrity-operator:latest
image: quay.io/file-integrity-operator/file-integrity-operator:0.1.31
image: quay.io/file-integrity-operator/file-integrity-operator:0.1.32
imagePullPolicy: Always
name: file-integrity-operator
resources:
Expand Down Expand Up @@ -318,4 +318,4 @@ spec:
provider:
name: Red Hat
url: https://github.com/openshift/file-integrity-operator
version: 0.1.31
version: 0.1.32
4 changes: 2 additions & 2 deletions catalog/preamble.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"package": "file-integrity-operator",
"entries": [
{
"name": "file-integrity-operator.v0.1.31",
"skipRange": ">=0.1.6 <0.1.31"
"name": "file-integrity-operator.v0.1.32",
"skipRange": ">=0.1.6 <0.1.32"
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ metadata:
]
capabilities: Seamless Upgrades
categories: Monitoring,Security
olm.skipRange: '>=0.1.6 <0.1.31'
olm.skipRange: '>=0.1.6 <0.1.32'
operatorframework.io/cluster-monitoring: "true"
operatorframework.io/suggested-namespace: openshift-file-integrity
operators.openshift.io/infrastructure-features: '["disconnected", "fips"]'
Expand Down
2 changes: 1 addition & 1 deletion version.Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# - 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.1.31
VERSION?=0.1.32
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package version

var (
Version = "0.1.31"
Version = "0.1.32"
)

0 comments on commit 3248b81

Please sign in to comment.