Skip to content

Commit

Permalink
Release 1.8.0
Browse files Browse the repository at this point in the history
Late fixes:

* Fixed constraint for MarkupSafe in ansible-constraints.txt which caused
  install failure on Python 3.7.

Signed-off-by: Andreas Maier <[email protected]>
  • Loading branch information
andy-maier committed Jan 15, 2024
1 parent 685feaa commit fd0fc8a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 17 deletions.
4 changes: 2 additions & 2 deletions ansible-constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ Jinja2==3.0.0; python_version >= '3.8'

# MarkupSafe is used by Jinja2
# Jinja2 3.0 requires MarkupSafe>=2.0
MarkupSafe>=1.1.0; python_version <= '3.7'
MarkupSafe>=2.0.0; python_version >= '3.8'
MarkupSafe==1.1.0; python_version <= '3.7'
MarkupSafe==2.0.0; python_version >= '3.8'


# Direct dependencies for development (must be consistent with dev-requirements.txt)
Expand Down
18 changes: 4 additions & 14 deletions docs/source/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,15 @@ Releases
========


Version 1.8.0-dev1
------------------
Version 1.8.0
-------------

This version contains all fixes up to version 1.7.x.
This version contains all fixes up to version 1.7.4.

Released: not yet
Released: 2024-01-15

Availability: `AutomationHub`_, `Galaxy`_, `GitHub`_

**Incompatible changes:**

**Deprecations:**

**Bug fixes:**

* Addressed safety issues up to 2024-01-08.
Expand Down Expand Up @@ -187,12 +183,6 @@ Availability: `AutomationHub`_, `Galaxy`_, `GitHub`_
collections and in order to get rid of the dependency to have the doc extractor
installed as a dependency to build and install the collection locally.

**Known issues:**

* See `list of open issues`_.

.. _`list of open issues`: https://github.com/zhmcclient/zhmc-ansible-modules/issues


Version 1.7.0
-------------
Expand Down
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace: ibm

name: ibm_zhmc

version: 1.8.0-dev1
version: 1.8.0

readme: README.md

Expand Down

0 comments on commit fd0fc8a

Please sign in to comment.