Skip to content

Commit

Permalink
Release 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasKorbar committed Jun 27, 2024
1 parent 5d6e0b2 commit 668fd2e
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 12 deletions.
2 changes: 1 addition & 1 deletion distribution/dnsconfd-config.8
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion distribution/dnsconfd-reload.8
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion distribution/dnsconfd-status.8
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion distribution/dnsconfd.8
Original file line number Diff line number Diff line change
@@ -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

Expand Down
5 changes: 4 additions & 1 deletion distribution/dnsconfd.spec
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -168,6 +168,9 @@ fi
%{_tmpfilesdir}/dnsconfd-unbound.conf

%changelog
* Thu Jun 27 2024 Tomas Korbar <[email protected]> - 1.0.2-1
- Release 1.0.2

* Wed Jun 26 2024 Tomas Korbar <[email protected]> - 1.0.1-1
- Release 1.0.1

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='dnsconfd',
version='1.0.1',
version='1.0.2',
install_requires=[
'dbus-python',
'pyyaml'
Expand Down
10 changes: 5 additions & 5 deletions tests/build_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 668fd2e

Please sign in to comment.