diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b8b990..b5134ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to this project will be documented in this file. +## [v3.0.0](https://github.com/Antiz96/arch-update/releases/tag/v3.0.0) - 2024-09-24 + +### Features + +- Add the "AURHelper" option in arch-update.conf ([#233](https://github.com/Antiz96/arch-update/pull/233)) - ([a1a5c07](https://github.com/Antiz96/arch-update/commit/a1a5c07e500b789547d9d944c4fd07d48643b818)) by @Antiz96 + +### Fixes + +- Add fakeroot as an explicit dependency ([#237](https://github.com/Antiz96/arch-update/pull/237)) - ([d2e01bf](https://github.com/Antiz96/arch-update/commit/d2e01bf0be663497fc6e4d3b45dad0cd3d229898)) by @Antiz96 + +### Miscellaneous + +- Add simple unit tests to check basic functions with `make test` ([#236](https://github.com/Antiz96/arch-update/pull/236)) - ([4978f98](https://github.com/Antiz96/arch-update/commit/4978f987ce8162f562b86731b3439dca6151e986)) by @Antiz96 +- Chore!(code structure): Split the script functions into separate libraries ([#232](https://github.com/Antiz96/arch-update/pull/232)) - ([c89c0dc](https://github.com/Antiz96/arch-update/commit/c89c0dcb241c9b9d7dd3b4b94443d9ef1da4ae1c)) by @Antiz96 + ## [v2.3.3](https://github.com/Antiz96/arch-update/releases/tag/v2.3.3) - 2024-09-15 ### Fixes diff --git a/cliff.toml b/cliff.toml index 87aa2da..913305f 100644 --- a/cliff.toml +++ b/cliff.toml @@ -23,7 +23,7 @@ body = """ {% if commit.breaking %}[**breaking**] {% endif %}\ {{ commit.message | upper_first }} - \ ([{{ commit.id | truncate(length=7, end="") }}]({{ self::remote_url() }}/commit/{{ commit.id }}))\ - {% if commit.github.username %} by @{{ commit.github.username }}{%- endif -%} + {% if commit.remote.username %} by @{{ commit.remote.username }}{%- endif -%} {% endmacro -%} {% if version %}\ diff --git a/doc/man/arch-update.1 b/doc/man/arch-update.1 index bf3f726..1135804 100644 --- a/doc/man/arch-update.1 +++ b/doc/man/arch-update.1 @@ -1,4 +1,4 @@ -.TH "ARCH-UPDATE" "1" "September 2024" "Arch-Update 2.3.3" "Arch-Update Manual" +.TH "ARCH-UPDATE" "1" "September 2024" "Arch-Update 3.0.0" "Arch-Update Manual" .SH NAME arch-update \- An update notifier/applier for Arch Linux that assists you with important pre/post update tasks. diff --git a/doc/man/arch-update.conf.5 b/doc/man/arch-update.conf.5 index 6ba9f81..75975e1 100644 --- a/doc/man/arch-update.conf.5 +++ b/doc/man/arch-update.conf.5 @@ -1,4 +1,4 @@ -.TH "ARCH-UPDATE.CONF" "5" "July 2024" "Arch-Update 2.3.3" "Arch-Update Manual" +.TH "ARCH-UPDATE.CONF" "5" "July 2024" "Arch-Update 3.0.0" "Arch-Update Manual" .SH NAME arch-update.conf \- arch-update configuration file. diff --git a/doc/man/fr/arch-update.1 b/doc/man/fr/arch-update.1 index 34d92c7..84bc448 100644 --- a/doc/man/fr/arch-update.1 +++ b/doc/man/fr/arch-update.1 @@ -1,4 +1,4 @@ -.TH "ARCH-UPDATE" "1" "Septembre 2024" "Arch-Update 2.3.3" "Manuel de Arch-Update" +.TH "ARCH-UPDATE" "1" "Septembre 2024" "Arch-Update 3.0.0" "Manuel de Arch-Update" .SH NAME arch-update \- Un notificateur/applicateur de mises à jour pour Arch Linux qui vous assiste dans les tâches importantes d'avant/après mise à jour. diff --git a/doc/man/fr/arch-update.conf.5 b/doc/man/fr/arch-update.conf.5 index 812337f..811d9c3 100644 --- a/doc/man/fr/arch-update.conf.5 +++ b/doc/man/fr/arch-update.conf.5 @@ -1,4 +1,4 @@ -.TH "ARCH-UPDATE.CONF" "5" "Juillet 2024" "Arch-Update 2.3.3" "Manuel de Arch-Update" +.TH "ARCH-UPDATE.CONF" "5" "Juillet 2024" "Arch-Update 3.0.0" "Manuel de Arch-Update" .SH NAME arch-update.conf \- fichier de configuration pour arch-update. diff --git a/po/arch-update.pot b/po/arch-update.pot index 4a8b9eb..b06cc8d 100644 --- a/po/arch-update.pot +++ b/po/arch-update.pot @@ -6,7 +6,7 @@ # AUTHOR , YEAR msgid "" msgstr "" -"Project-Id-Version: Arch-Update 2.3.3\n" +"Project-Id-Version: Arch-Update 3.0.0\n" "Report-Msgid-Bugs-To: https://github.com/Antiz96/arch-update/issues\n" "POT-Creation-Date: 2024-03-17 16:22+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" diff --git a/po/fr.po b/po/fr.po index dd26f11..3a7f126 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ # Robin Candau , 2024 msgid "" msgstr "" -"Project-Id-Version: Arch-Update 2.3.3\n" +"Project-Id-Version: Arch-Update 3.0.0\n" "Report-Msgid-Bugs-To: https://github.com/Antiz96/arch-update/issues\n" "POT-Creation-Date: 2024-03-17 16:22+0100\n" "PO-Revision-Date: 2024-05-09 09:30+0100\n" diff --git a/src/arch-update.sh b/src/arch-update.sh index 8fb84c8..715112c 100755 --- a/src/arch-update.sh +++ b/src/arch-update.sh @@ -7,7 +7,7 @@ # General variables name="arch-update" _name="Arch-Update" -version="2.3.3" +version="3.0.0" option="${1}" # Define the directory containing libraries