Skip to content

Commit

Permalink
Release v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rhmdnd committed Jul 21, 2023
1 parent 557f44a commit ac82bdb
Show file tree
Hide file tree
Showing 8 changed files with 51 additions and 8 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,33 @@ Versioning](https://semver.org/spec/v2.0.0.html).
-


## [1.2.0] - 2023-07-21

### Enhancements

-

### Fixes

-

### Internal Changes

-

### Deprecations

-

### Removals

-

### Security

-


## [1.1.0] - 2023-06-12

### 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.1.0'
olm.skipRange: '>=0.1.17 <1.2.0'
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.1.0
name: compliance-operator.v1.2.0
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.1.0
version: 1.2.0
8 changes: 8 additions & 0 deletions bundle/manifests/compliance.openshift.io_compliancescans.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,10 @@ spec:
scans, this marks the amount that have been executed.
format: int64
type: integer
endTimestamp:
description: Is the time when the scan was finished
format: date-time
type: string
errormsg:
description: If there are issues on the scan, this will be filled
up with an error message.
Expand Down Expand Up @@ -368,6 +372,10 @@ spec:
description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
type: string
type: object
startTimestamp:
description: Is the time when the scan was started
format: date-time
type: string
warnings:
description: If there are warnings on the scan, this will be filled
up with warning messages.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,10 @@ spec:
multiple scans, this marks the amount that have been executed.
format: int64
type: integer
endTimestamp:
description: Is the time when the scan was finished
format: date-time
type: string
errormsg:
description: If there are issues on the scan, this will be filled
up with an error message.
Expand Down Expand Up @@ -468,6 +472,10 @@ spec:
description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
type: string
type: object
startTimestamp:
description: Is the time when the scan was started
format: date-time
type: string
warnings:
description: If there are warnings on the scan, this will be
filled up with warning messages.
Expand Down
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.1.0",
"skipRange": ">=0.1.17 <1.1.0"
"name": "compliance-operator.v1.2.0",
"skipRange": ">=0.1.17 <1.2.0"
}
]
}
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.1.0'
olm.skipRange: '>=0.1.17 <1.2.0'
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.1.0
VERSION?=1.2.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 = "1.1.0"
Version = "1.2.0"
)

0 comments on commit ac82bdb

Please sign in to comment.