Skip to content

Commit e077a4e

Browse files
authored
Merge pull request #119 from pvarki/bl_local
Resolve bl.localmaeher correctly to host gw
2 parents d63f2a1 + 950693d commit e077a4e

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.6.3
2+
current_version = 1.6.4
33
commit = False
44
tag = False
55

docker/container-init.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ sed 's/.*localmaeher.*//g' /etc/hosts >/etc/hosts.new && cat /etc/hosts.new >/et
55
echo "$(getent ahostsv4 host.docker.internal | awk '{ print $1 }') fake.localmaeher.dev.pvarki.fi" >>/etc/hosts
66
echo "$(getent ahostsv4 host.docker.internal | awk '{ print $1 }') tak.localmaeher.dev.pvarki.fi" >>/etc/hosts
77
echo "$(getent ahostsv4 host.docker.internal | awk '{ print $1 }') kc.localmaeher.dev.pvarki.fi" >>/etc/hosts
8+
echo "$(getent ahostsv4 host.docker.internal | awk '{ print $1 }') bl.localmaeher.dev.pvarki.fi" >>/etc/hosts
89

910
# Make sure the persistent directories exist
1011
test -d /data/persistent/private || ( mkdir -p /data/persistent/private && chmod og-rwx /data/persistent/private )

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "rasenmaeher_api"
3-
version = "1.6.3"
3+
version = "1.6.4"
44
description = "python-rasenmaeher-api"
55
authors = [
66
"Aciid <703382+Aciid@users.noreply.github.com>",

src/rasenmaeher_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
""" python-rasenmaeher-api """
2-
__version__ = "1.6.3" # NOTE Use `bump2version --config-file patch` to bump versions correctly
2+
__version__ = "1.6.4" # NOTE Use `bump2version --config-file patch` to bump versions correctly

tests/test_rasenmaeher_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
def test_version() -> None:
1717
"""Make sure version matches expected"""
18-
assert __version__ == "1.6.3"
18+
assert __version__ == "1.6.4"
1919

2020

2121
@pytest.mark.asyncio(loop_scope="session")

0 commit comments

Comments
 (0)