Skip to content

Commit

Permalink
Fix small linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
wzzrd committed Jun 12, 2024
1 parent 933ecb6 commit 7d1546f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions roles/atuin_client/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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', '<')
Expand Down Expand Up @@ -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', '>=')
Expand Down

0 comments on commit 7d1546f

Please sign in to comment.