From 7d1546f9f7dec45346eb72de8991918091bc9bf4 Mon Sep 17 00:00:00 2001 From: Maxim Burgerhout Date: Wed, 12 Jun 2024 15:28:20 +0200 Subject: [PATCH] Fix small linting errors --- CHANGELOG.md | 6 ++++++ galaxy.yml | 2 +- roles/atuin_client/tasks/main.yml | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c9579b..554d602 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.1.1] + +#### Fixed + +- Small linting errors + ## [2.1.0] #### Added diff --git a/galaxy.yml b/galaxy.yml index e0c8748..0b8d865 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -8,7 +8,7 @@ namespace: wzzrd name: atuin # The version of the collection. Must be compatible with semantic versioning -version: "2.1.0" +version: "2.1.1" # The path to the Markdown (.md) readme file. This path is relative to the root of the collection readme: README.md diff --git a/roles/atuin_client/tasks/main.yml b/roles/atuin_client/tasks/main.yml index 17039b5..816e586 100644 --- a/roles/atuin_client/tasks/main.yml +++ b/roles/atuin_client/tasks/main.yml @@ -35,7 +35,7 @@ - debug - name: Download and install new binary, if needed, for old atuin - when: + when: - (detected_version is not defined) or (atuin_client_version != detected_version) - atuin_client_version is version('18.3.0', '<') @@ -81,7 +81,7 @@ state: absent - name: Download and install new binary, if needed, for new atuin - when: + when: - (detected_version is not defined) or (atuin_client_version != detected_version) - atuin_client_version is version('18.3.0', '>=')