Skip to content

Commit e5a0ab0

Browse files
authored
Merge pull request #624 from AlexNPavel/v0.0.7
*: release v0.0.7
2 parents 65db9c4 + 8f0fe69 commit e5a0ab0

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

CHANGELOG.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
## Unreleased
1+
## v0.0.7
22

33
### Added
4-
### Removed
4+
5+
- Service account generation ([#454](https://github.com/operator-framework/operator-sdk/pull/454))
6+
- Leader election ([#530](https://github.com/operator-framework/operator-sdk/pull/530))
7+
- Incluster test support for test framework ([#469](https://github.com/operator-framework/operator-sdk/pull/469))
8+
- Ansible type operator generation support ([#486](https://github.com/operator-framework/operator-sdk/pull/486), [#559](https://github.com/operator-framework/operator-sdk/pull/559))
9+
510
### Changed
611

712
- Moved the rendering of `deploy/operator.yaml` to the `operator-sdk new` command instead of `operator-sdk build`
813

9-
### Fixed
10-
### Deprecated
11-
### Security
12-
1314
## v0.0.6
1415

1516
### Added

pkg/generator/templates.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -324,8 +324,8 @@ required = [
324324
[[constraint]]
325325
name = "github.com/operator-framework/operator-sdk"
326326
# The version rule is used for a specific release and the master branch for in between releases.
327-
branch = "master" #osdk_branch_annotation
328-
# version = "=v0.0.6" #osdk_version_annotation
327+
# branch = "master" #osdk_branch_annotation
328+
version = "=v0.0.7" #osdk_version_annotation
329329
`
330330

331331
const projectGitignoreTmpl = `

version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
package version
1616

1717
var (
18-
Version = "0.0.6+git"
18+
Version = "0.0.7"
1919
)

0 commit comments

Comments
 (0)