diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 4596167..1c4fe35 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,11 +1,17 @@ +## 2.0.dev6 + +**RelativeURLs Bugfix** + +Bugfix for relative URLs. This was working correctly within the `mkdocs` project serving it's own documentation, so the breakage wasn't immediately obvious. [#56](https://github.com/encode/mkdocs/pull/56). + ## 2.0.dev5 **Navigation Support Bugfix** -Use relative URLs for site navigation. Ensures that sites hosted on a subpath still link correctly. [#54](https://github.com/encode/mkdocs/pull/54), [#55](https://github.com/encode/mkdocs/pull/55) +Use relative URLs for site navigation. Ensures that sites hosted on a subpath still link correctly. [#54](https://github.com/encode/mkdocs/pull/54), [#55](https://github.com/encode/mkdocs/pull/55). ## 2.0.dev4 **Navigation Support** -Preliminary support for site navigation. [#49](https://github.com/encode/mkdocs/pull/49) +Preliminary support for site navigation. [#49](https://github.com/encode/mkdocs/pull/49). diff --git a/src/mkdocs/__init__.py b/src/mkdocs/__init__.py index 35dc81c..3e7b875 100644 --- a/src/mkdocs/__init__.py +++ b/src/mkdocs/__init__.py @@ -1,5 +1,5 @@ from .__version__ import __title__, __version__ -from .mkdocs import get_current_page, get_site, Page, Static, Site, MkDocs, cli +from .mkdocs import get_current_page, get_site, link_to, Page, Static, Site, MkDocs, cli __all__ = [ @@ -7,6 +7,7 @@ '__version__', 'get_current_page', 'get_site', + 'link_to', 'Page', 'Static', 'Site', diff --git a/src/mkdocs/__version__.py b/src/mkdocs/__version__.py index 961e407..0fe0c7b 100644 --- a/src/mkdocs/__version__.py +++ b/src/mkdocs/__version__.py @@ -1,2 +1,2 @@ __title__ = "mkdocs" -__version__ = "2.0.dev5" +__version__ = "2.0.dev6"