Skip to content

Commit 60510e9

Browse files
committed
Changelog setup
1 parent 6b0173c commit 60510e9

File tree

11 files changed

+82
-0
lines changed

11 files changed

+82
-0
lines changed

CHANGELOG.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
==============================
2+
ibm.ibm_zos_cics Release Notes
3+
==============================
4+
5+
.. contents:: Topics
6+
7+
8+
v0.0.3
9+
======
10+
11+
Release Summary
12+
---------------
13+
14+
Initial release of the IBM® z/OS® CICS® collection, also referred to as ibm_zos_cics, which is part of the broader offering Red Hat® Ansible® Certified Content for IBM Z®.
15+
16+
This collection can manage CICS and CICSPlex® SM resources and definitions by calling the CMCI REST API, which can be configured in a CICSplex or in a stand-alone region.

changelogs/.plugin-cache.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
objects: {}
2+
plugins:
3+
become: {}
4+
cache: {}
5+
callback: {}
6+
cliconf: {}
7+
connection: {}
8+
httpapi: {}
9+
inventory: {}
10+
lookup: {}
11+
module: {}
12+
netconf: {}
13+
shell: {}
14+
strategy: {}
15+
vars: {}
16+
version: 0.0.3

changelogs/changelog.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
ancestor: null
2+
releases:
3+
0.0.3:
4+
changes:
5+
release_summary: "Pre-release"
6+
fragments:
7+
- 003-retrospective.yml
8+
release_date: '2023-04-21'

changelogs/config.yaml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
changelog_filename_template: ../CHANGELOG.rst
2+
changelog_filename_version_depth: 0
3+
changes_file: changelog.yaml
4+
changes_format: combined
5+
ignore_other_fragment_extensions: true
6+
keep_fragments: false
7+
mention_ancestor: true
8+
new_plugins_after_name: removed_features
9+
notesdir: fragments
10+
prelude_section_name: release_summary
11+
prelude_section_title: Release Summary
12+
sanitize_changelog: true
13+
sections:
14+
- - major_changes
15+
- Major Changes
16+
- - minor_changes
17+
- Minor Changes
18+
- - breaking_changes
19+
- Breaking Changes / Porting Guide
20+
- - deprecated_features
21+
- Deprecated Features
22+
- - removed_features
23+
- Removed Features (previously deprecated)
24+
- - security_fixes
25+
- Security Fixes
26+
- - bugfixes
27+
- Bugfixes
28+
- - known_issues
29+
- Known Issues
30+
title: ibm.ibm_zos_cics
31+
trivial_section_name: trivial
32+
use_fqcn: true
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
release_summary: |-
2+
Initial release of the IBM® z/OS® CICS® collection, also referred to as ibm_zos_cics, which is part of the broader offering Red Hat® Ansible® Certified Content for IBM Z®.
3+
4+
This collection can manage CICS and CICSPlex® SM resources and definitions by calling the CMCI REST API, which can be configured in a CICSplex or in a stand-alone region.

galaxy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,4 @@ build_ignore:
6767
- .travis.yml
6868
- .whitesource
6969
- ibm-ibm_zos_cics-*.tar.gz
70+
- changelogs

plugins/modules/cmci_action.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
L(CMCI REST API,https://www.ibm.com/docs/en/cics-ts/latest?topic=programming-cmci-rest-api-reference).
2020
For information about how to compose PUT requests, see
2121
L(CMCI PUT requests,https://www.ibm.com/docs/en/cics-ts/latest?topic=requests-cmci-put).
22+
version_added: 1.0.0
2223
author:
2324
- Stewart Francis (@stewartfrancis)
2425
- Tom Latham (@Tom-Latham)

plugins/modules/cmci_create.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
L(CMCI REST API,https://www.ibm.com/docs/en/cics-ts/latest?topic=programming-cmci-rest-api-reference).
2020
For information about how to compose POST requests, see
2121
L(CMCI POST requests,https://www.ibm.com/docs/en/cics-ts/latest?topic=requests-cmci-post).
22+
version_added: 1.0.0
2223
author:
2324
- Stewart Francis (@stewartfrancis)
2425
- Tom Latham (@Tom-Latham)

plugins/modules/cmci_delete.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
L(CMCI REST API,https://www.ibm.com/docs/en/cics-ts/latest?topic=programming-cmci-rest-api-reference).
2020
For information about how to compose DELETE requests, see
2121
L(CMCI DELETE requests, https://www.ibm.com/docs/en/cics-ts/latest?topic=requests-cmci-delete).
22+
version_added: 1.0.0
2223
author:
2324
- Stewart Francis (@stewartfrancis)
2425
- Tom Latham (@Tom-Latham)

plugins/modules/cmci_get.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
L(CMCI REST API,https://www.ibm.com/docs/en/cics-ts/latest?topic=programming-cmci-rest-api-reference).
2020
For information about how to compose GET requests, see
2121
L(CMCI GET requests,https://www.ibm.com/docs/en/cics-ts/latest?topic=requests-cmci-get).
22+
version_added: 1.0.0
2223
author:
2324
- Stewart Francis (@stewartfrancis)
2425
- Tom Latham (@Tom-Latham)

0 commit comments

Comments
 (0)