Skip to content

Commit

Permalink
Release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasKorbar committed Aug 15, 2024
1 parent 088f120 commit dbc943b
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 13 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.1.2" ""
.TH "dnsconfd-config" "8" "10 Oct 2023" "dnsconfd-1.2.0" ""

.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.1.2" ""
.TH "dnsconfd-reload" "8" "10 Oct 2023" "dnsconfd-1.2.0" ""

.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.1.2" ""
.TH "dnsconfd-status" "8" "10 Oct 2023" "dnsconfd-1.2.0" ""

.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.1.2" ""
.TH "dnsconfd" "8" "10 Oct 2023" "dnsconfd-1.2.0" ""

.SH NAME

Expand Down
2 changes: 1 addition & 1 deletion distribution/dnsconfd.conf.5
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "dnsconfd.conf" "5" "10 Oct 2023" "dnsconfd-1.1.2" ""
.TH "dnsconfd.conf" "5" "10 Oct 2023" "dnsconfd-1.2.0" ""

.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.1.2
Version: 1.2.0
Release: 1%{?dist}
Summary: Local DNS cache configuration daemon
License: MIT
Expand Down Expand Up @@ -171,6 +171,9 @@ fi
%{_tmpfilesdir}/dnsconfd-unbound.conf

%changelog
* Thu Aug 15 2024 Tomas Korbar <[email protected]> - 1.2.0-1
- Release 1.2.0

* Mon Jul 22 2024 Tomas Korbar <[email protected]> - 1.1.2-1
- Release 1.1.2

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.1.2'
release = '1.2.0'


# -- 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.1.2',
version='1.2.0',
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.1.2
cp -r ./* "$tempdir"/dnsconfd-1.1.2
mkdir "$tempdir"/dnsconfd-1.2.0
cp -r ./* "$tempdir"/dnsconfd-1.2.0
pushd "$tempdir"
tar -czvf "$tempdir"/dnsconfd-1.1.2.tar.gz dnsconfd-1.1.2
tar -czvf "$tempdir"/dnsconfd-1.2.0.tar.gz dnsconfd-1.2.0
popd
mv "$tempdir"/dnsconfd-1.1.2.tar.gz ./distribution
mv "$tempdir"/dnsconfd-1.2.0.tar.gz ./distribution
pushd distribution
fedpkg --release=f40 mockbuild
mv ./results_dnsconfd/1.1.2/1.fc40/*.noarch.rpm ../tests
mv ./results_dnsconfd/1.2.0/1.fc40/*.noarch.rpm ../tests
popd
rm -rf "$tempdir"

0 comments on commit dbc943b

Please sign in to comment.