From 39b44812fd719e857f0549656c13cb0388110885 Mon Sep 17 00:00:00 2001 From: Laszlo Nagy Date: Mon, 15 Nov 2021 17:10:41 +0100 Subject: [PATCH] Increase version from 0.0.2 to 0.1.0 --- README.md | 10 +++++----- galaxy.yml | 3 ++- meta/runtime.yml | 3 +++ roles/common/vars/main.yml | 2 +- 4 files changed, 11 insertions(+), 7 deletions(-) create mode 100644 meta/runtime.yml diff --git a/README.md b/README.md index 1d4ef40..b636f51 100644 --- a/README.md +++ b/README.md @@ -71,14 +71,14 @@ To install from [GitHub](https://github.com/OneIdentity/ansible-privilege-manage Using `ansible-galaxy` command: ```bash -ansible-galaxy collection install https://github.com/OneIdentity/ansible-privilege-manager/releases/download/v0.0.2/oneidentity-privilege_manager-0.0.2.tar.gz +ansible-galaxy collection install https://github.com/OneIdentity/ansible-privilege-manager/releases/download/v0.1.0/oneidentity-privilege_manager-0.1.0.tar.gz ``` The collection can also be added to a project's `requirements.yml` file ```yaml --- collections: - - name: https://github.com/OneIdentity/ansible-privilege-manager/releases/download/v0.0.2/oneidentity-privilege_manager-0.0.2.tar.gz + - name: https://github.com/OneIdentity/ansible-privilege-manager/releases/download/v0.1.0/oneidentity-privilege_manager-0.1.0.tar.gz ``` and installed using the `ansible-galaxy` command. This method allows all required collections for a project to be specified in one place and installed with one command. @@ -108,7 +108,7 @@ For local build and installation, you can clone the Git repository, build the co The build command will generate an Ansible Galaxy collection artifact with a `tar.gz` file extension, sample output will look like the following: ``` - Created collection for oneidentity.privilege_manager at /home/user/ansible-privilege-manager/oneidentity-privilege_manager-0.0.2.tar.gz + Created collection for oneidentity.privilege_manager at /home/user/ansible-privilege-manager/oneidentity-privilege_manager-0.1.0.tar.gz ``` `Pleae note the path shown above is just an example, the path to your build artifact will be in the root directory of the cloned repository.` @@ -118,14 +118,14 @@ For local build and installation, you can clone the Git repository, build the co Using `ansible-galaxy` command: ```bash - ansible-galaxy collection install /home/user/ansible-privilege-manager/oneidentity-privilege_manager-0.0.2.tar.gz + ansible-galaxy collection install /home/user/ansible-privilege-manager/oneidentity-privilege_manager-0.1.0.tar.gz ``` The collection can also be added to a project's `requirements.yml` file ```yaml --- collections: - - name: /home/user/ansible-privilege-manager/oneidentity-privilege_manager-0.0.2.tar.gz + - name: /home/user/ansible-privilege-manager/oneidentity-privilege_manager-0.1.0.tar.gz ``` and installed using the `ansible-galaxy` command. This method allows all required collections for a project to be specified in one place and installed with one command. diff --git a/galaxy.yml b/galaxy.yml index e046ab7..7d47488 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -10,7 +10,7 @@ namespace: oneidentity name: privilege_manager # Semantic versioning compliant version designation -version: "0.0.2" +version: "0.1.0" # The path do the Markdown(.md) readme file readme: README.md @@ -18,6 +18,7 @@ readme: README.md # List of the collection's content authors: 'Full Name (http://site)' authors: - "Mark Stillings " + - "Laszlo Nagy " # Optional keys diff --git a/meta/runtime.yml b/meta/runtime.yml new file mode 100644 index 0000000..988a78a --- /dev/null +++ b/meta/runtime.yml @@ -0,0 +1,3 @@ +--- + +requires_ansible: ">=2.9" diff --git a/roles/common/vars/main.yml b/roles/common/vars/main.yml index 0cc3549..2b1e647 100644 --- a/roles/common/vars/main.yml +++ b/roles/common/vars/main.yml @@ -1,3 +1,3 @@ --- -collection_version: '0.0.2' +collection_version: '0.1.0'