Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions OWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
approvers:
- amisevsk
- elsony
- kim-tsao
- maysunfaisal
- mik-dass
- yangcao77
- michael-valdron
- thepetk
- feloy
- rm3l

reviewers:
- elsony
- kim-tsao
- maysunfaisal
- yangcao77
- michael-valdron
- thepetk
- feloy
- rm3l
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,21 @@ Issues are tracked in the [devfile/api](https://github.com/devfile/api) repo wit

## Releases

For devfile/library releases, please check the release [page](https://github.com/devfile/library/releases).
The devfile/library releases are created on demand. For existing devfile/library releases, please check the release [page](https://github.com/devfile/library/releases).

### Create a New Release

The steps to create a new release are:

* Create a separate branch for the particular release, for example, `v2.0.x`

* Run this [script](https://github.com/devfile/library/blob/main/scripts/changelog-script.sh) to generate release changelog.
```bash
# generate a changelog for all the changes since release v2.0.0
./changelog-script.sh v2.0.0
```

* Create a new release [here](https://github.com/devfile/library/releases/new) with a new tag (having the same name with the above branch - e.g. `v2.0.x`) and copy the generated changelog to the details

## Contributing

Expand Down