Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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).
3 changes: 2 additions & 1 deletion src/mkdocs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
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__ = [
'__title__',
'__version__',
'get_current_page',
'get_site',
'link_to',
'Page',
'Static',
'Site',
Expand Down
2 changes: 1 addition & 1 deletion src/mkdocs/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__title__ = "mkdocs"
__version__ = "2.0.dev5"
__version__ = "2.0.dev6"
Loading