diff --git a/README.md b/README.md index 39bdf8b..c2c817e 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Here are all our ansible roles for installing git server. ## Using this Collection You can install the collection using ansible-galaxy by running: ```bash -ansible-galaxy collection install l3d.git:1.0.12 +ansible-galaxy collection install l3d.git:1.0.13 ``` Remember you can to Upgrade to the latest version of the l3d.git collection using the ``--upgrade`` parameter: @@ -35,7 +35,7 @@ cd collections/ansible_collections/l3d/git/ git submodule update --init --recursive # optionally install all requirements -ansible-galaxy install -r requirements.yml +ansible-galaxy collection install -r requirements.yml --upgrade ``` You can also list a collection in ``requirements.yml``: @@ -43,7 +43,7 @@ You can also list a collection in ``requirements.yml``: --- collections: - name: l3d.git - version: ">=1.0.12" + version: ">=1.0.13" ``` ## Include roles in your playbook @@ -71,7 +71,7 @@ The roles in this collection using the ``ansible.builtin`` and ``community.gener ### Example Requirements Installation: ```bash # galaxy requirements -ansible-galaxy install -r requirements.yml --upgrade +ansible-galaxy collection install -r requirements.yml --upgrade # pip requirements pip install -r requirements.txt diff --git a/galaxy.yml b/galaxy.yml index 1113c16..31c42c0 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -9,7 +9,7 @@ namespace: l3d name: git # The version of the collection. Must be compatible with semantic versioning -version: 1.0.12 +version: 1.0.13 # The path to the Markdown (.md) readme file. This path is relative to the root of the collection readme: README.md diff --git a/requirements.yml b/requirements.yml index ce06c95..ba1697c 100644 --- a/requirements.yml +++ b/requirements.yml @@ -1,4 +1,4 @@ --- collections: - name: community.general - version: ">=7.5.0" + version: ">=8.0.2"