Skip to content

Commit

Permalink
Release v1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rhmdnd committed Oct 11, 2023
1 parent 74f7eeb commit 1191ff4
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 8 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,15 @@ Versioning](https://semver.org/spec/v2.0.0.html).
-


## [1.3.1] - 2023-10-11

### Fixes

- Fix an issue caused by outdated Machine Config Operator dependencies where
the API check pod crashes due to Machine Config Operator using newer versions
of Ignition (3.4).
[OCPBUGS-18025](https://issues.redhat.com/browse/OCPBUGS-18025)

## [1.3.0] - 2023-09-11

### Enhancements
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ metadata:
]
capabilities: Seamless Upgrades
categories: Monitoring,Security
olm.skipRange: '>=0.1.17 <1.3.0'
olm.skipRange: '>=0.1.17 <1.3.1'
operatorframework.io/cluster-monitoring: "true"
operatorframework.io/suggested-namespace: openshift-compliance
operators.openshift.io/infrastructure-features: '["disconnected", "fips", "proxy-aware"]'
Expand All @@ -174,7 +174,7 @@ metadata:
operatorframework.io/arch.amd64: supported
operatorframework.io/arch.ppc64le: supported
operatorframework.io/arch.s390x: supported
name: compliance-operator.v1.3.0
name: compliance-operator.v1.3.1
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -1630,4 +1630,4 @@ spec:
name: operator
- image: ghcr.io/complianceascode/k8scontent:latest
name: profile
version: 1.3.0
version: 1.3.1
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": "compliance-operator",
"entries": [
{
"name": "compliance-operator.v1.3.0",
"skipRange": ">=0.1.17 <1.3.0"
"name": "compliance-operator.v1.3.1",
"skipRange": ">=0.1.17 <1.3.1"
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ metadata:
]
capabilities: Seamless Upgrades
categories: Monitoring,Security
olm.skipRange: '>=0.1.17 <1.3.0'
olm.skipRange: '>=0.1.17 <1.3.1'
operatorframework.io/cluster-monitoring: "true"
operatorframework.io/suggested-namespace: openshift-compliance
operators.openshift.io/infrastructure-features: '["disconnected", "fips", "proxy-aware"]'
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?=1.3.0
VERSION?=1.3.1
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 = "1.3.0"
Version = "1.3.1"
)

0 comments on commit 1191ff4

Please sign in to comment.