Skip to content

Commit

Permalink
Merge pull request #4 from llnagy76/increase_version
Browse files Browse the repository at this point in the history
Increase version from 0.0.2 to 0.1.0
  • Loading branch information
llnagy76 authored Nov 15, 2021
2 parents 16a5a8d + 39b4481 commit d296c08
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.`
Expand All @@ -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.
Expand Down
3 changes: 2 additions & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,15 @@ 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

# List of the collection's content authors: 'Full Name <email> (http://site)'
authors:
- "Mark Stillings <[email protected]>"
- "Laszlo Nagy <[email protected]>"


# Optional keys
Expand Down
3 changes: 3 additions & 0 deletions meta/runtime.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---

requires_ansible: ">=2.9"
2 changes: 1 addition & 1 deletion roles/common/vars/main.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
---

collection_version: '0.0.2'
collection_version: '0.1.0'

0 comments on commit d296c08

Please sign in to comment.