From d0906931e89ce6f1cb00c594fc5337497e2cee2e Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Wed, 29 Nov 2023 17:17:47 -0700 Subject: [PATCH] docs(changelog): version 1.1.0 [citest skip] Update changelog and .README.html for version 1.1.0 Signed-off-by: Rich Megginson --- .README.html | 36 ++++++++++++++++++++++++++---------- CHANGELOG.md | 14 ++++++++++++++ 2 files changed, 40 insertions(+), 10 deletions(-) diff --git a/.README.html b/.README.html index 34a56df..ced9f1a 100644 --- a/.README.html +++ b/.README.html @@ -137,10 +137,16 @@

Contents

@@ -152,6 +158,14 @@

Supported Distributions

  • RHEL-9.1+, CentOS Stream 9.1+
  • Fedora 36+
  • +

    Requirements

    +

    See below

    +

    Collection requirements

    +

    If you want to manage rpm-ostree systems with this role, +you will need to install additional collections. Please run the +following command line to install the collection.

    +
    ansible-galaxy collection install -vv -r meta/collection-requirements.yml

    Role Variables

    These are the variables that can be passed to the role. NOTE: Use Ansible Vault to encrypt passwords, keys, and other @@ -348,16 +362,18 @@

    Role Variables

    Example Playbooks

    -
    - name: Manage keylime servers
    -  hosts: all
    -
    -  vars:
    -    keylime_server_verifier_ip: "{{ ansible_host }}"
    -    keylime_server_registrar_ip: "{{ ansible_host }}"
    -
    -  roles:
    -    - linux-system-roles.keylime_server
    +
    - name: Manage keylime servers
    +  hosts: all
    +
    +  vars:
    +    keylime_server_verifier_ip: "{{ ansible_host }}"
    +    keylime_server_registrar_ip: "{{ ansible_host }}"
    +
    +  roles:
    +    - linux-system-roles.keylime_server
    +

    rpm-ostree

    +

    See README-ostree.md

    License

    MIT

    diff --git a/CHANGELOG.md b/CHANGELOG.md index 3643380..43541af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,20 @@ Changelog ========= +[1.1.0] - 2023-11-29 +-------------------- + +### New Features + +- feat: support for ostree systems (#24) + +### Other Changes + +- build(deps): Bump actions/checkout from 3 to 4 (#16) +- ci: ensure dependabot git commit message conforms to commitlint (#19) +- ci: tox-lsr version 3.1.1 (#23) +- ci: Use emulated TPM device on C9S (#25) + [1.0.1] - 2023-09-08 --------------------