Skip to content

Commit

Permalink
Release 0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasKorbar committed May 17, 2024
1 parent 508656b commit 0a539cb
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 14 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-0.0.5" ""
.TH "dnsconfd-config" "8" "10 Oct 2023" "dnsconfd-0.0.6" ""

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

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

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

.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: 0.0.5
Version: 0.0.6
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
* Fri May 17 2024 Tomas Korbar <[email protected]> - 0.0.6-1
- Release 0.0.6

* Fri May 03 2024 Tomas Korbar <[email protected]> - 0.0.5-1
- Release 0.0.5

Expand Down
6 changes: 3 additions & 3 deletions dnsconfd/fsm/dnsconfd_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ def __init__(self, config: dict, main_loop: object):
self.transition: dict[
ContextState,
dict[str,
tuple[ContextState,
Callable[[DnsconfdContext, ContextEvent],
ContextEvent]]]] = {
tuple[ContextState,
Callable[[DnsconfdContext, ContextEvent],
ContextEvent]]]] = {
ContextState.STARTING: {
"KICKOFF": (ContextState.CONFIGURING_DNS_MANAGER,
self._starting_kickoff_transition),
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='0.0.5',
version='0.0.6',
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-0.0.5
cp -r ./* "$tempdir"/dnsconfd-0.0.5
mkdir "$tempdir"/dnsconfd-0.0.6
cp -r ./* "$tempdir"/dnsconfd-0.0.6
pushd "$tempdir"
tar -czvf "$tempdir"/dnsconfd-0.0.5.tar.gz dnsconfd-0.0.5
tar -czvf "$tempdir"/dnsconfd-0.0.6.tar.gz dnsconfd-0.0.6
popd
mv "$tempdir"/dnsconfd-0.0.5.tar.gz ./distribution
mv "$tempdir"/dnsconfd-0.0.6.tar.gz ./distribution
pushd distribution
fedpkg --release=f39 mockbuild
mv ./results_dnsconfd/0.0.5/1.fc39/*.noarch.rpm ../tests
mv ./results_dnsconfd/0.0.6/1.fc39/*.noarch.rpm ../tests
popd
rm -rf "$tempdir"

0 comments on commit 0a539cb

Please sign in to comment.