Skip to content

Commit bdf9168

Browse files
ddimatosketankelkarrichp405AndreMarcel99rexemin
authored
Merge version 1.6.0 into production main branch. (#830)
* update zoau version checker and add unit testing Signed-off-by: Ketan Kelkar <[email protected]> * Bugfix/769/1.6/zos copy does not overwrite permission on overwriten copy as comunity module (#790) * Change function behaivour, variables names and add test case to ensure result * Change test assertion to ensure wokrs as ansible module * Change test for the HSF * Add fragment * More readable test and better coments * add changelog fragment for zoau version checker bugfix (#800) Signed-off-by: Ketan Kelkar <[email protected]> * Add ansible-lint tooling added (#813) * Add ansible-lint tooling Signed-off-by: ddimatos <[email protected]> Conflicts: ac galaxy.yml meta/runtime.yml Changes to be committed: new file: .ansible-lint new file: ac modified: galaxy.yml modified: meta/runtime.yml * Changelog fragment Signed-off-by: ddimatos <[email protected]> * Removing file brought it in by cherry pick Signed-off-by: ddimatos <[email protected]> * Added missing keyword 'build_ignore' Signed-off-by: ddimatos <[email protected]> --------- Signed-off-by: ddimatos <[email protected]> * Bugfix for #807 - zos_copy ignores encoding for binary files (#810) * Updated normalization condition * Added test cases for bugfix * Added changelog fragment * Updated changelog fragment * Update zos_data_set member description created (#816) * Update zos_data_set module member description Signed-off-by: ddimatos <[email protected]> * Adding fix for uncataloged vsam and non-vsam data sets Signed-off-by: ddimatos <[email protected]> * Fixes the issue of parts of a vsam cluster remaining behind and allows user to correctly delete DS not in cat Signed-off-by: ddimatos <[email protected]> * Update module doc to explain data set deltion for given volume Signed-off-by: ddimatos <[email protected]> * Unbound local var fix Signed-off-by: ddimatos <[email protected]> * Lint corrections Signed-off-by: ddimatos <[email protected]> * remove unused imports Signed-off-by: ddimatos <[email protected]> * Added 2.16 ignore since our pipeline supports devel which is at this time 2.16 Signed-off-by: ddimatos <[email protected]> * Update module doc to explain data set deltion for given volumegit Signed-off-by: ddimatos <[email protected]> * Added changelog fragment Signed-off-by: ddimatos <[email protected]> * Update grammar issue Signed-off-by: ddimatos <[email protected]> --------- Signed-off-by: ddimatos <[email protected]> * Bugfix: Fixes zos_copy and zos_fetch deprecation msg for using _play_context.verbosity (#814) * Add new test case for verbosity check Signed-off-by: ddimatos <[email protected]> * Update zos_copy tests to support display.verbosity and nested encoding Signed-off-by: ddimatos <[email protected]> Conflicts: tests/functional/modules/test_zos_copy_func.py Changes to be committed: deleted: tests/functional/modules/test_module_display.py modified: tests/functional/modules/test_zos_copy_func.py * Update test framewor to provide support for adhoc module calls Signed-off-by: ddimatos <[email protected]> * Update zos_fetch plugin to use the display.verbosity Signed-off-by: ddimatos <[email protected]> * Lint correction Signed-off-by: ddimatos <[email protected]> * Update test with verbosity Signed-off-by: ddimatos <[email protected]> Conflicts: tests/functional/modules/test_zos_copy_func.py Changes to be committed: modified: tests/functional/modules/test_zos_copy_func.py * Change from shell to raw module usage Signed-off-by: ddimatos <[email protected]> Conflicts: tests/functional/modules/test_zos_copy_func.py Changes to be committed: modified: tests/functional/modules/test_zos_copy_func.py * changelog fragment Signed-off-by: ddimatos <[email protected]> * Changelog fragment change Signed-off-by: ddimatos <[email protected]> --------- Signed-off-by: ddimatos <[email protected]> * Release tasks v1.6.0 (#829) * Galaxy for 1.6 Signed-off-by: ddimatos <[email protected]> * Update ansible-core meta runtime Signed-off-by: ddimatos <[email protected]> * Update collections private meta Signed-off-by: ddimatos <[email protected]> * Missing trailing empty line Signed-off-by: ddimatos <[email protected]> * Update readme with volume init info Signed-off-by: ddimatos <[email protected]> * Update lint to match galaxy build_ignore Signed-off-by: ddimatos <[email protected]> * Changelog summary Signed-off-by: ddimatos <[email protected]> * Added changelog Signed-off-by: ddimatos <[email protected]> * Minor manual CHANGELOG updates Signed-off-by: ddimatos <[email protected]> * Relase notes updated Signed-off-by: ddimatos <[email protected]> * Update build_ignore to skip importer_result.json Signed-off-by: ddimatos <[email protected]> * update galaxy build_ignore Signed-off-by: ddimatos <[email protected]> * update galaxy build_ignore Signed-off-by: ddimatos <[email protected]> --------- Signed-off-by: ddimatos <[email protected]> * Clean up changelog fragements no longer need post releasing 1.6 Signed-off-by: ddimatos <[email protected]> --------- Signed-off-by: Ketan Kelkar <[email protected]> Signed-off-by: ddimatos <[email protected]> Co-authored-by: Ketan Kelkar <[email protected]> Co-authored-by: Rich Parker <[email protected]> Co-authored-by: André Marcel Gutiérrez Benítez <[email protected]> Co-authored-by: Ivan Moreno <[email protected]>
1 parent 71aef1d commit bdf9168

23 files changed

+796
-245
lines changed

.ansible-lint

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
exclude_paths:
2+
- .tar.gz
3+
- __pycache__/
4+
- .cache/
5+
- .DS_Store
6+
- .git/
7+
- .github/
8+
- .gitignore
9+
- .python-version
10+
- .pytest_cache/
11+
- .vscode/
12+
- Jenkinsfile
13+
- ac
14+
- ansible.cfg
15+
- changelogs/
16+
- collections/
17+
- docs/
18+
- scripts/
19+
- test_config.yml
20+
- tests/*.ini
21+
- tests/*.py
22+
- tests/.pytest_cache
23+
- tests/__pycache__
24+
- tests/functional
25+
- tests/helpers
26+
- tests/requirements.txt
27+
- tests/unit
28+
- tests/sanity/ignore-2.10.txt
29+
- venv*
30+
parseable: true
31+
quiet: false
32+
use_default_rules: true
33+
verbosity: 1

CHANGELOG.rst

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ ibm.ibm_zos_core Release Notes
55
.. contents:: Topics
66

77

8-
v1.6.0-beta.1
9-
=============
8+
v1.6.0
9+
======
1010

1111
Release Summary
1212
---------------
1313

14-
Release Date: '2023-04-26'
14+
Release Date: '2023-06-23'
1515
This changelog describes all changes made to the modules and plugins included
1616
in this collection. The release date is the date the changelog is created.
1717
For additional details such as required dependencies and availability review
@@ -26,23 +26,30 @@ Minor Changes
2626
-------------
2727

2828
- Updated the text converter import from "from ansible.module_utils._text" to "from ansible.module_utils.common.text.converters" to remove warning".. warn Use ansible.module_utils.common.text.converters instead.". (https://github.com/ansible-collections/ibm_zos_core/pull/602)
29-
- module_utils - job.py utility did not support positional wiled card placement, this enhancement uses `fnmatch` logic to support wild cards.
29+
- module_utils - job.py utility did not support positional wild card placement, this enhancement uses `fnmatch` logic to support wild cards.
3030
- zos_copy - Fixed a bug where the module would change the mode for a directory when copying into it the contents of another. (https://github.com/ansible-collections/ibm_zos_core/pull/723)
3131
- zos_copy - was enhanced to keep track of modified members in a destination dataset, restoring them to their previous state in case of a failure. (https://github.com/ansible-collections/ibm_zos_core/pull/551)
32-
- zos_data_set - add force parameter to enable member delete while pdse is in use (https://github.com/ansible-collections/ibm_zos_core/pull/718).
33-
- zos_job_query - ansible module does not support positional wild card placement for `job_name1 or `job_id`. This enhancement allows embedded wildcards throughout the `job_name` and `job_id`. (https://github.com/ansible-collections/ibm_zos_core/pull/721)
32+
- zos_data_set - add force parameter to enable member delete while PDS/e is in use (https://github.com/ansible-collections/ibm_zos_core/pull/718).
33+
- zos_job_query - ansible module does not support positional wild card placement for `job_name` or `job_id`. This enhancement allows embedded wildcards throughout the `job_name` and `job_id`. (https://github.com/ansible-collections/ibm_zos_core/pull/721)
3434
- zos_lineinfile - would access data sets with exclusive access so no other task can read the data, this enhancement allows for a data set to be opened with a disposition set to share so that other tasks can access the data when option `force` is set to `true`. (https://github.com/ansible-collections/ibm_zos_core/pull/731)
3535
- zos_tso_command - was enhanced to accept `max_rc` as an option. This option allows a non-zero return code to succeed as a valid return code. (https://github.com/ansible-collections/ibm_zos_core/pull/666)
3636

3737
Bugfixes
3838
--------
3939

4040
- Fixed wrong error message when a USS source is not found, aligning with a similar error message from zos_blockinfile "{src} does not exist".
41-
- zos_blockinfile - was unable to use double quotes which prevented some use cases and did not display an approriate message. The fix now allows for double quotes to be used with the module. (https://github.com/ansible-collections/ibm_zos_core/pull/680)
41+
- module_utils - data_set.py - Reported a failure caused when cataloging a VSAM data set. Fix now corrects how VSAM data sets are cataloged. (https://github.com/ansible-collections/ibm_zos_core/pull/816).
42+
- zos_blockinfile - was unable to use double quotes which prevented some use cases and did not display an appropriate message. The fix now allows for double quotes to be used with the module. (https://github.com/ansible-collections/ibm_zos_core/pull/680)
43+
- zos_copy - Encoding normalization used to handle newlines in text files was applied to binary files too. Fix makes sure that binary files bypass this normalization. (https://github.com/ansible-collections/ibm_zos_core/pull/810)
4244
- zos_copy - Fixes a bug where files not encoded in IBM-1047 would trigger an error while computing the record length for a new destination dataset. Issue 664. (https://github.com/ansible-collections/ibm_zos_core/pull/743)
4345
- zos_copy - Fixes a bug where the code for fixing an issue with newlines in files (issue 599) would use the wrong encoding for normalization. Issue 678. (https://github.com/ansible-collections/ibm_zos_core/pull/743)
46+
- zos_copy - Reported a warning about the use of _play_context.verbosity.This change corrects the module action to prevent the warning message. (https://github.com/ansible-collections/ibm_zos_core/pull/814).
47+
- zos_copy - kept permissions on target directory when copy overwrote files. The fix now set permissions when mode is given. (https://github.com/ansible-collections/ibm_zos_core/pull/790)
48+
- zos_data_set - Reported a failure caused when `present=absent` for a VSAM data set leaving behind cluster components. Fix introduces a new logical flow that will evaluate the volumes, compare it to the provided value and if necessary catalog and delete. (https://github.com/ansible-collections/ibm_zos_core/pull/816).
4449
- zos_encode - fixes a bug where converted files were not tagged afterwards with the new code set. (https://github.com/ansible-collections/ibm_zos_core/pull/534)
50+
- zos_fetch - Reported a warning about the use of _play_context.verbosity.This change corrects the module action to prevent the warning message. (https://github.com/ansible-collections/ibm_zos_core/pull/814).
4551
- zos_find - fixes a bug where find result values stopped being returned after first value in a list was 'not found'. (https://github.com/ansible-collections/ibm_zos_core/pull/668)
52+
- zos_gather_facts - Fixes an issue in the zoau version checker which prevented the zos_gather_facts module from running with newer versions of ZOAU. (https://github.com/ansible-collections/ibm_zos_core/pull/797)
4653
- zos_lineinfile - Fixed a bug where a Python f-string was used and thus removed to ensure support for Python 2.7 on the controller. (https://github.com/ansible-collections/ibm_zos_core/pull/659)
4754

4855
New Modules

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ executing operator commands, executing TSO commands, ping,
1212
querying operator actions, APF authorizing libraries,
1313
editing textual data in data sets or Unix System Services files,
1414
finding data sets, backing up and restoring data sets and
15-
volumes, mounting file systems and running z/OS programs without JCL.
15+
volumes, mounting file systems, running z/OS programs without JCL and
16+
initializing volumes.
1617

1718

1819
Red Hat Ansible Certified Content for IBM Z
@@ -49,7 +50,7 @@ and ansible-doc to automate tasks on z/OS.
4950

5051
Ansible version compatibility
5152
=============================
52-
This collection has been tested against the following Ansible versions: >=2.9,<2.15.
53+
This collection has been tested against the following Ansible versions: >=2.9,<2.16.
5354

5455
Copyright
5556
=========

changelogs/.plugin-cache.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,4 +116,4 @@ plugins:
116116
strategy: {}
117117
test: {}
118118
vars: {}
119-
version: 1.6.0-beta.1
119+
version: 1.6.0

changelogs/changelog.yaml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -760,6 +760,44 @@ releases:
760760
name: zos_gather_facts
761761
namespace: ''
762762
release_date: '2022-11-02'
763+
1.6.0:
764+
changes:
765+
bugfixes:
766+
- module_utils - data_set.py - Reported a failure caused when cataloging a VSAM
767+
data set. Fix now corrects how VSAM data sets are cataloged. (https://github.com/ansible-collections/ibm_zos_core/pull/816).
768+
- zos_copy - Encoding normalization used to handle newlines in text files was
769+
applied to binary files too. Fix makes sure that binary files bypass this
770+
normalization. (https://github.com/ansible-collections/ibm_zos_core/pull/810)
771+
- zos_copy - Reported a warning about the use of _play_context.verbosity.This
772+
change corrects the module action to prevent the warning message. (https://github.com/ansible-collections/ibm_zos_core/pull/814).
773+
- zos_copy - kept permissions on target directory when copy overwrote files.
774+
The fix now set permissions when mode is given. (https://github.com/ansible-collections/ibm_zos_core/pull/790)
775+
- zos_data_set - Reported a failure caused when `present=absent` for a VSAM
776+
data set leaving behind cluster components. Fix introduces a new logical flow
777+
that will evaluate the volumes, compare it to the provided value and if necessary
778+
catalog and delete. (https://github.com/ansible-collections/ibm_zos_core/pull/816).
779+
- zos_fetch - Reported a warning about the use of _play_context.verbosity.This
780+
change corrects the module action to prevent the warning message. (https://github.com/ansible-collections/ibm_zos_core/pull/814).
781+
- zos_gather_facts - Fixes an issue in the zoau version checker which prevented
782+
the zos_gather_facts module from running with newer versions of ZOAU. (https://github.com/ansible-collections/ibm_zos_core/pull/797)
783+
release_summary: 'Release Date: ''2023-06-23''
784+
785+
This changelog describes all changes made to the modules and plugins included
786+
787+
in this collection. The release date is the date the changelog is created.
788+
789+
For additional details such as required dependencies and availability review
790+
791+
the collections `release notes <https://ibm.github.io/z_ansible_collections_doc/ibm_zos_core/docs/source/release_notes.html>`__'
792+
fragments:
793+
- 783_fix_zoau_version_checker.yml
794+
- 790_overwrite_permissions_on_copy.yml
795+
- 810_fix_binary_file_bypass.yml
796+
- 813-ansible-lint.yml
797+
- 814-zos_data_set-update-vsam-copy.yml
798+
- 816-zos_data_set-update-vsam.yml
799+
- v1.6.0_summary.yml
800+
release_date: '2023-06-23'
763801
1.6.0-beta.1:
764802
changes:
765803
bugfixes:

changelogs/fragments/.gitkeep

Whitespace-only changes.

docs/source/modules/zos_data_set.rst

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ state
5656
If *state=absent* and *volumes* is provided, and the data set is not found in the catalog, the module attempts to perform catalog using supplied *name* and *volumes*. If the attempt to catalog the data set catalog fails, then no action is taken. Module completes successfully with *changed=False*.
5757

5858

59+
If *state=absent* and *volumes* is provided, and the data set is found in the catalog, the module compares the catalog volume attributes to the provided *volumes*. If the volume attributes are different, the cataloged data set will be uncataloged temporarily while the requested data set be deleted is cataloged. The module will catalog the original data set on completion, if the attempts to catalog fail, no action is taken. Module completes successfully with *changed=False*.
60+
61+
5962
If *state=present* and the data set does not exist on the managed node, create and catalog the data set, module completes successfully with *changed=True*.
6063

6164

@@ -65,6 +68,9 @@ state
6568
If *state=present* and *replace=False* and the data set is present on the managed node, no action taken, module completes successfully with *changed=False*.
6669

6770

71+
If *state=present* and *type=MEMBER* and the member does not exist in the data set, create a member formatted to store data, module completes successfully with *changed=True*. Note, a PDSE does not allow a mixture of formats such that there is executables (program objects) and data. The member created is formatted to store data, not an executable.
72+
73+
6874
If *state=cataloged* and *volumes* is provided and the data set is already cataloged, no action taken, module completes successfully with *changed=False*.
6975

7076

@@ -74,7 +80,7 @@ state
7480
If *state=cataloged* and *volumes* is provided and the data set is not cataloged, module attempts to perform catalog using supplied *name* and *volumes*. If the attempt to catalog the data set catalog fails, returns failure with *changed=False*.
7581

7682

77-
If *state=uncataloged* and the data set is not found, no action taken , module completes successfully with *changed=False*.
83+
If *state=uncataloged* and the data set is not found, no action taken, module completes successfully with *changed=False*.
7884

7985

8086
If *state=uncataloged* and the data set is found, the data set is uncataloged, module completes successfully with *changed=True*.
@@ -321,6 +327,9 @@ batch
321327
If *state=absent* and *volumes* is provided, and the data set is not found in the catalog, the module attempts to perform catalog using supplied *name* and *volumes*. If the attempt to catalog the data set catalog fails, then no action is taken. Module completes successfully with *changed=False*.
322328

323329

330+
If *state=absent* and *volumes* is provided, and the data set is found in the catalog, the module compares the catalog volume attributes to the provided *volumes*. If they volume attributes are different, the cataloged data set will be uncataloged temporarily while the requested data set be deleted is cataloged. The module will catalog the original data set on completion, if the attempts to catalog fail, no action is taken. Module completes successfully with *changed=False*.
331+
332+
324333
If *state=present* and the data set does not exist on the managed node, create and catalog the data set, module completes successfully with *changed=True*.
325334

326335

@@ -330,6 +339,9 @@ batch
330339
If *state=present* and *replace=False* and the data set is present on the managed node, no action taken, module completes successfully with *changed=False*.
331340

332341

342+
If *state=present* and *type=MEMBER* and the member does not exist in the data set, create a member formatted to store data, module completes successfully with *changed=True*. Note, a PDSE does not allow a mixture of formats such that there is executables (program objects) and data. The member created is formatted to store data, not an executable.
343+
344+
333345
If *state=cataloged* and *volumes* is provided and the data set is already cataloged, no action taken, module completes successfully with *changed=False*.
334346

335347

@@ -339,7 +351,7 @@ batch
339351
If *state=cataloged* and *volumes* is provided and the data set is not cataloged, module attempts to perform catalog using supplied *name* and *volumes*. If the attempt to catalog the data set catalog fails, returns failure with *changed=False*.
340352

341353

342-
If *state=uncataloged* and the data set is not found, no action taken , module completes successfully with *changed=False*.
354+
If *state=uncataloged* and the data set is not found, no action taken, module completes successfully with *changed=False*.
343355

344356

345357
If *state=uncataloged* and the data set is found, the data set is uncataloged, module completes successfully with *changed=True*.
@@ -352,7 +364,7 @@ batch
352364
353365

354366
type
355-
The data set type to be used when creating a data set. (e.g ``pdse``)
367+
The data set type to be used when creating a data set. (e.g ``PDSE``)
356368

357369
``MEMBER`` expects to be used with an existing partitioned data set.
358370

docs/source/release_notes.rst

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
Releases
77
========
88

9-
Version 1.6.0-beta.1
10-
====================
9+
Version 1.6.0
10+
=============
1111

1212
New Modules
1313
-----------
@@ -18,23 +18,41 @@ Minor Changes
1818
-------------
1919

2020
- ``zos_blockinfile`` - Adds an enhancement to allow double quotes within a block.
21+
- ``zos_copy``
22+
23+
- Updates the behavior of the `mode` option so that permissions are applied to existing directories and contents.
24+
- Adds an enhancement to option `restore_backup` to track modified members in a data set in the event of an error, restoring them to their previous state without reallocating the data set.
2125
- ``zos_data_set`` - Adds a new option named *force* to enable deletion of a data member in a PDSE that is simultaneously in use by others.
2226
- ``zos_job_query`` - Enables embedded positional wild card placement throughout *job_name* and *job_id* parameters.
2327
- ``zos_lineinfile`` - Adds a new option named *force* to enable modification of a data member in a data set that is simultaneously in use by others.
2428
- ``zos_tso_command`` - Adds a new option named *max_rc* to enable non-zero return codes lower than the specified maximum return as succeeded.
29+
- ``module_utils``
30+
31+
- job - Adds support for positional wild card placement for `job_name`` and `job_id`.
32+
- Adds support for import *common.text.converters* over the deprecated *_text* import.
2533

2634
Bugfixes
2735
--------
2836

2937
- ``zos_copy``
38+
3039
- Fixes a bug where files not encoded in IBM-1047 would trigger an error while computing the record length for a new destination dataset.
3140
- Fixes a bug where the module would change the mode for a directory when copying in the contents of another directory.
3241
- Fixes a bug where the incorrect encoding would be used during normalization, particularly when processing newlines in files.
42+
- Fixes a bug where binary files were not excluded when normalizing data to remove newlines.
43+
- Fixes a bug where a *_play_context.verbosity* deprecation warning would appear.
44+
- ``zos_fetch`` - Fixes a bug where a *_play_context.verbosity* deprecation warning would appear.
3345
- ``zos_encode`` - Fixes a bug where converted files were not tagged with the new code set afterwards.
3446
- ``zos_find`` - Fixes a bug where the module would stop searching and exit after the first value in a list was not found.
3547
- ``zos_lineinfile``
48+
3649
- Removes use of Python f-string to ensure support for Python 2.7 on the controller.
37-
- Fixes a bug where an incorect error message would be raised when a USS source was not found.
50+
- Fixes a bug where an incorrect error message would be raised when a USS source was not found.
51+
- ``module_utils``
52+
53+
- data_set - Fixes an failure caused by cataloging a VSAM data set when the data set is not cataloged.
54+
- ``zos_data_set`` - Fixes a bug that will leave VSAM data set cluster components behind when instructed to delete the data set (`present=absent`).
55+
- ``zos_gather_facts`` - Fixes a bug that prevented the module from executing with newer versions of ZOAU.
3856

3957
Availability
4058
------------

galaxy.yml

Lines changed: 23 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace: ibm
66
name: ibm_zos_core
77

88
# The collection version
9-
version: 1.6.0-beta.1
9+
version: 1.6.0
1010

1111
# Collection README file
1212
readme: README.md
@@ -64,27 +64,34 @@ issues: https://github.com/ansible-collections/ibm_zos_core/issues
6464

6565
# Ignore files and directories matching the following patterns
6666
build_ignore:
67+
- '*.tar.gz'
68+
- __pycache__
69+
- .cache
70+
- .DS_Store
71+
- .git
72+
- .github
73+
- .gitignore
74+
- .python-version
75+
- .pytest_cache
76+
- .vscode
6777
- Jenkinsfile
78+
- ac
6879
- ansible.cfg
69-
- .gitignore
70-
- .github
71-
- '*.tar.gz'
72-
- docs
73-
- collections
7480
- changelogs
81+
- collections
7582
- docs
76-
- tests/__pycache__
83+
- importer_result.json
84+
- make.env.encrypt
85+
- Makefile
86+
- scripts
87+
- test_config.yml
88+
- tests/*.ini
89+
- tests/*.py
7790
- tests/.pytest_cache
91+
- tests/__pycache__
7892
- tests/functional
7993
- tests/helpers
80-
- tests/unit
81-
- tests/*.py
82-
- tests/*.ini
8394
- tests/requirements.txt
84-
- test_config.yml
85-
- changelogs
95+
- tests/unit
96+
- tests/sanity/ignore-2.10.txt
8697
- venv*
87-
- make.env.encrypt
88-
- Makefile
89-
- make.env
90-
- scripts

meta/ibm_zos_core_meta.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: ibm_zos_core
2-
version: "1.6.0-beta.1"
2+
version: "1.6.0"
33
managed_requirements:
44
-
55
name: "IBM Open Enterprise SDK for Python"

0 commit comments

Comments
 (0)