Skip to content

Commit

Permalink
Bump versions and changelog for release
Browse files Browse the repository at this point in the history
  • Loading branch information
waveform80 committed Mar 6, 2024
1 parent 160cd86 commit 74efb88
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ Changelog
.. currentmodule:: nobodd


Release 0.4 (2024-03-07)
========================

* Use absolute paths for output of nbd-server and tftpd server configurations
* Include missing ``#cloud-config`` header in the tutorial


Release 0.3 (2024-03-06)
========================

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# coding: utf-8
[metadata]
name = nobodd
version = 0.3
version = 0.4
description = A simple TFTP boot server for the Raspberry Pi
long_description = file: README.rst
author = Dave Jones
Expand Down
2 changes: 1 addition & 1 deletion tests/test_prep.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def test_help(capsys):
main(['--version'])
assert err.value.code == 0
capture = capsys.readouterr()
assert capture.out.strip() == '0.3'
assert capture.out.strip() == '0.4'

with pytest.raises(SystemExit) as err:
main(['--help'])
Expand Down
2 changes: 1 addition & 1 deletion tests/test_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def test_help(capsys):
main(['--version'])
assert err.value.code == 0
capture = capsys.readouterr()
assert capture.out.strip() == '0.3'
assert capture.out.strip() == '0.4'

with pytest.raises(SystemExit) as err:
main(['--help'])
Expand Down

0 comments on commit 74efb88

Please sign in to comment.