Skip to content

Commit

Permalink
Merge branch 'docker-host'
Browse files Browse the repository at this point in the history
  • Loading branch information
jtdoepke committed Oct 17, 2022
2 parents c3270ef + 06d48da commit 09a0e6c
Show file tree
Hide file tree
Showing 5 changed files with 158 additions and 114 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Change Log
==========

0.6.0 (2022-10-17)
------------------

- Get the default Localstack hostname from the `DOCKER_HOST` env var, if set.

0.5.0 (2022-10-13)
------------------

Expand Down
15 changes: 8 additions & 7 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

import os
import sys

try:
import importlib.metadata as importlib_metadata
except ModuleNotFoundError:
Expand Down Expand Up @@ -56,9 +57,9 @@
master_doc = "index"

# General information about the project.
project = u"pytest-localstack"
copyright = u"2018, Mintel"
author = u"Mintel Group Ltd."
project = "pytest-localstack"
copyright = "2018, Mintel"
author = "Mintel Group Ltd."

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down Expand Up @@ -155,8 +156,8 @@
(
master_doc,
"pytest-localstack.tex",
u"pytest-localstack Documentation",
u"Jaye Doepke",
"pytest-localstack Documentation",
"Jaye Doepke",
"manual",
)
]
Expand All @@ -167,7 +168,7 @@
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, "pytest-localstack", u"pytest-localstack Documentation", [author], 1)
(master_doc, "pytest-localstack", "pytest-localstack Documentation", [author], 1)
]


Expand All @@ -180,7 +181,7 @@
(
master_doc,
"pytest-localstack",
u"pytest-localstack Documentation",
"pytest-localstack Documentation",
author,
"pytest-localstack",
"One line description of project.",
Expand Down

0 comments on commit 09a0e6c

Please sign in to comment.