diff --git a/README.md b/README.md index f57a3f2..9f12d51 100644 --- a/README.md +++ b/README.md @@ -257,6 +257,12 @@ Contributions are welcome from everyone! Whether you're reporting bugs, submitti All notable changes to this project are presented below. +## v0.5.2 + +**🐞 Bug Fixes** + +- Docs: Fixed internal links in index. + ## v0.5.1 **🐞 Bug Fixes** diff --git a/docs/about/changelog.md b/docs/about/changelog.md index c516b97..60b8608 100644 --- a/docs/about/changelog.md +++ b/docs/about/changelog.md @@ -1,5 +1,11 @@ All notable changes to this project are presented below. +## v0.5.2 + +**🐞 Bug Fixes** + +- Docs: Fixed internal links in index.md. + ## v0.5.1 **🐞 Bug Fixes** diff --git a/docs/index.md b/docs/index.md index 635678a..1cc0400 100644 --- a/docs/index.md +++ b/docs/index.md @@ -46,10 +46,10 @@ Choose the following links to continue your journey:
{% for href, icon, text in [ - ("/install/", "computer", "Install Jupyter-TikZ"), - ("/arguments/", "terminal", "IPython Magics additional options"), - ("/usage/as-magic/", "magic", "Usage as IPython Magics"), - ("/usage/as-package/", "package", "Usage as a Python Package"), + ("./installation/", "computer", "Install Jupyter-TikZ"), + ("./arguments/", "terminal", "IPython Magics additional options"), + ("./usage/as-magic/", "magic", "Usage as IPython Magics"), + ("./usage/as-package/", "package", "Usage as a Python Package"), ] %} {{ icons[icon] }} {{ text }} {% endfor %} diff --git a/pyproject.toml b/pyproject.toml index 4a01d43..b6a62f4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "jupyter-tikz" -version = "0.5.1" +version = "0.5.2" description = "IPython Magics for rendering TeX/TikZ in Jupyter Notebooks" license = "MIT" authors = ["lucaslrodri"]