Skip to content

Commit

Permalink
Release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rhmdnd committed Nov 22, 2022
1 parent 9ab797e commit 66d330e
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 10 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ 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).

## [1.0.0] - 2022-11-22
### Changes
- Add preamble.json to release targets
- Update OCP release branch
- Add OpenShift subscription annotation
- Ensure we update the ocp-0.1 branch when releasing
- make: Small file-based catalog cleanup

## [0.1.32] - 2022-10-24
### Changes
- Makefile: Update OPM version to 1.20.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@ metadata:
]
capabilities: Seamless Upgrades
categories: Monitoring,Security
olm.skipRange: '>=0.1.6 <0.1.32'
olm.skipRange: '>=0.1.6 <1.0.0'
operatorframework.io/cluster-monitoring: "true"
operatorframework.io/suggested-namespace: openshift-file-integrity
operators.openshift.io/infrastructure-features: '["disconnected", "fips"]'
operators.openshift.io/valid-subscription: '["OpenShift Kubernetes Engine", "OpenShift
Container Platform", "OpenShift Platform Plus"]'
operators.operatorframework.io/builder: operator-sdk-v1.14.0+git
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
repository: https://github.com/openshift/file-integrity-operator
Expand All @@ -32,7 +34,7 @@ metadata:
operatorframework.io/arch.s390x: supported
operatorframework.io/os.linux: supported
operatorframework.io/os.zos: supported
name: file-integrity-operator.v0.1.32
name: file-integrity-operator.v1.0.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -96,7 +98,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.32
image: quay.io/file-integrity-operator/file-integrity-operator:1.0.0
imagePullPolicy: Always
name: file-integrity-operator
resources:
Expand Down Expand Up @@ -318,4 +320,4 @@ spec:
provider:
name: Red Hat
url: https://github.com/openshift/file-integrity-operator
version: 0.1.32
version: 1.0.0
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.32",
"skipRange": ">=0.1.6 <0.1.32"
"name": "file-integrity-operator.v1.0.0",
"skipRange": ">=0.1.6 <1.0.0"
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@ metadata:
]
capabilities: Seamless Upgrades
categories: Monitoring,Security
olm.skipRange: '>=0.1.6 <0.1.32'
olm.skipRange: '>=0.1.6 <1.0.0'
operatorframework.io/cluster-monitoring: "true"
operatorframework.io/suggested-namespace: openshift-file-integrity
operators.openshift.io/infrastructure-features: '["disconnected", "fips"]'
operators.openshift.io/valid-subscription: '["OpenShift Kubernetes Engine", "OpenShift Container Platform", "OpenShift Platform Plus"]'
operators.openshift.io/valid-subscription: '["OpenShift Kubernetes Engine", "OpenShift
Container Platform", "OpenShift Platform Plus"]'
repository: https://github.com/openshift/file-integrity-operator
labels:
operatorframework.io/arch.amd64: supported
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.32
VERSION?=1.0.0
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.32"
Version = "1.0.0"
)

0 comments on commit 66d330e

Please sign in to comment.