diff --git a/distribution/dnsconfd-config.8 b/distribution/dnsconfd-config.8 index 21e4bde..efa879b 100644 --- a/distribution/dnsconfd-config.8 +++ b/distribution/dnsconfd-config.8 @@ -1,4 +1,4 @@ -.TH "dnsconfd-config" "8" "10 Oct 2023" "dnsconfd-1.0.1" "" +.TH "dnsconfd-config" "8" "10 Oct 2023" "dnsconfd-1.0.2" "" .SH NAME diff --git a/distribution/dnsconfd-reload.8 b/distribution/dnsconfd-reload.8 index 468b802..a651c70 100644 --- a/distribution/dnsconfd-reload.8 +++ b/distribution/dnsconfd-reload.8 @@ -1,4 +1,4 @@ -.TH "dnsconfd-reload" "8" "10 Oct 2023" "dnsconfd-1.0.1" "" +.TH "dnsconfd-reload" "8" "10 Oct 2023" "dnsconfd-1.0.2" "" .SH NAME diff --git a/distribution/dnsconfd-status.8 b/distribution/dnsconfd-status.8 index 146ad81..7fce92f 100644 --- a/distribution/dnsconfd-status.8 +++ b/distribution/dnsconfd-status.8 @@ -1,4 +1,4 @@ -.TH "dnsconfd-status" "8" "10 Oct 2023" "dnsconfd-1.0.1" "" +.TH "dnsconfd-status" "8" "10 Oct 2023" "dnsconfd-1.0.2" "" .SH NAME diff --git a/distribution/dnsconfd.8 b/distribution/dnsconfd.8 index 02b9af2..10faa3d 100644 --- a/distribution/dnsconfd.8 +++ b/distribution/dnsconfd.8 @@ -1,4 +1,4 @@ -.TH "dnsconfd" "8" "10 Oct 2023" "dnsconfd-1.0.1" "" +.TH "dnsconfd" "8" "10 Oct 2023" "dnsconfd-1.0.2" "" .SH NAME diff --git a/distribution/dnsconfd.spec b/distribution/dnsconfd.spec index 6200768..093391e 100644 --- a/distribution/dnsconfd.spec +++ b/distribution/dnsconfd.spec @@ -2,7 +2,7 @@ %global selinuxtype targeted Name: dnsconfd -Version: 1.0.1 +Version: 1.0.2 Release: 1%{?dist} Summary: Local DNS cache configuration daemon License: MIT @@ -168,6 +168,9 @@ fi %{_tmpfilesdir}/dnsconfd-unbound.conf %changelog +* Thu Jun 27 2024 Tomas Korbar - 1.0.2-1 +- Release 1.0.2 + * Wed Jun 26 2024 Tomas Korbar - 1.0.1-1 - Release 1.0.1 diff --git a/docs/conf.py b/docs/conf.py index 1206524..7c40f0d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ author = 'Tomas Korbar, Petr Mensik' # The full version, including alpha/beta/rc tags -release = '1.0.1' +release = '1.0.2' # -- General network_objects --------------------------------------------------- diff --git a/setup.py b/setup.py index 4c69d71..0012ff7 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='dnsconfd', - version='1.0.1', + version='1.0.2', install_requires=[ 'dbus-python', 'pyyaml' diff --git a/tests/build_package.sh b/tests/build_package.sh index 1fd261f..12792dd 100755 --- a/tests/build_package.sh +++ b/tests/build_package.sh @@ -3,14 +3,14 @@ set -e tempdir=$(mktemp -d) -mkdir "$tempdir"/dnsconfd-1.0.1 -cp -r ./* "$tempdir"/dnsconfd-1.0.1 +mkdir "$tempdir"/dnsconfd-1.0.2 +cp -r ./* "$tempdir"/dnsconfd-1.0.2 pushd "$tempdir" -tar -czvf "$tempdir"/dnsconfd-1.0.1.tar.gz dnsconfd-1.0.1 +tar -czvf "$tempdir"/dnsconfd-1.0.2.tar.gz dnsconfd-1.0.2 popd -mv "$tempdir"/dnsconfd-1.0.1.tar.gz ./distribution +mv "$tempdir"/dnsconfd-1.0.2.tar.gz ./distribution pushd distribution fedpkg --release=f40 mockbuild -mv ./results_dnsconfd/1.0.1/1.fc40/*.noarch.rpm ../tests +mv ./results_dnsconfd/1.0.2/1.fc40/*.noarch.rpm ../tests popd rm -rf "$tempdir"