Skip to content

Commit

Permalink
chore(release): v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Antiz96 committed Sep 23, 2024
1 parent d2e01bf commit 5f34c4b
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 8 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}\
Expand Down
2 changes: 1 addition & 1 deletion doc/man/arch-update.1
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion doc/man/arch-update.conf.5
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion doc/man/fr/arch-update.1
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion doc/man/fr/arch-update.conf.5
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion po/arch-update.pot
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# AUTHOR <EMAIL@ADDRESS>, 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"
Expand Down
2 changes: 1 addition & 1 deletion po/fr.po
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Robin Candau <[email protected]>, 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"
Expand Down
2 changes: 1 addition & 1 deletion src/arch-update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5f34c4b

Please sign in to comment.