From 6800d6f8e54ac6f597874c48d0c1d73f29766a16 Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Mon, 14 Mar 2022 17:29:21 -0300 Subject: [PATCH] [arch] fix: not displaying ignored updates (regression) --- CHANGELOG.md | 5 +++++ bauh/__init__.py | 2 +- bauh/gems/arch/controller.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 45f391fe..8efc7ddf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ 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.0.0/). +## [0.10.1] +### Fixes +- Arch + - regression: not displaying ignored updates + ## [0.10.0] 2022-03-14 ### Features diff --git a/bauh/__init__.py b/bauh/__init__.py index f9b95658..91a5a6a5 100644 --- a/bauh/__init__.py +++ b/bauh/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.10.0' +__version__ = '0.10.1' __app_name__ = 'bauh' import os diff --git a/bauh/gems/arch/controller.py b/bauh/gems/arch/controller.py index d638d9e8..bfea0815 100644 --- a/bauh/gems/arch/controller.py +++ b/bauh/gems/arch/controller.py @@ -635,7 +635,7 @@ class ArchManager(SoftwareManager): if ignored: for p in pkgs: if p.name in ignored: - p.updates_ignored = True + p.update_ignored = True return SearchResult(pkgs, None, len(pkgs))