Skip to content

Commit 94ca436

Browse files
committed
Release 1.0.5
1 parent 34baa98 commit 94ca436

File tree

4 files changed

+45
-21
lines changed

4 files changed

+45
-21
lines changed

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.0.5] - 27 October 2021
9+
10+
### Added
11+
12+
- [#213](https://github.com/scylladb/sphinx-scylladb-theme/pull/213): We've added guides to help Scylla developers to migrate to Scylla Sphinx Theme 1.0 and 1.1.
13+
- [#236](https://github.com/scylladb/sphinx-scylladb-theme/pull/236): Added documentation to install the toolchain for Windows users.
14+
15+
### Changed
16+
17+
- [#214](https://github.com/scylladb/sphinx-scylladb-theme/pull/214): Breadcrumbs now highlight the project's name. With this change, readers will know which documentation site they are navigating.
18+
- [#231](https://github.com/scylladb/sphinx-scylladb-theme/pull/231): All external links include an external link icon, and they now open on a new page.
19+
- [#240](https://github.com/scylladb/sphinx-scylladb-theme/pull/240): We've removed transparency from the home page mascot.
20+
21+
### Fixed
22+
23+
- [#214](https://github.com/scylladb/sphinx-scylladb-theme/pull/214): Breadcrumbs links to internal pages were not working.
24+
825
## [1.0] - 01 September 2021
926

1027
**IMPORTANT**: For more information on how to update, see [Migrating from 0.x to 1.0](https://sphinx-theme.scylladb.com/stable/contribute/migration/0-x-to-1-0).
@@ -170,6 +187,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
170187
- [#59](https://github.com/scylladb/sphinx-scylladb-theme/issues/59): All projects now share a 404 page.
171188
- [#58](https://github.com/scylladb/sphinx-scylladb-theme/issues/58): Support for redirections.
172189

190+
[1.0.5]: https://github.com/scylladb/sphinx-scylladb-theme/compare/1.0.4...1.0.5
173191
[1.0]: https://github.com/scylladb/sphinx-scylladb-theme/compare/0.1.25...1.0.4
174192
[0.1.25]: https://github.com/scylladb/sphinx-scylladb-theme/compare/0.1.24...0.1.25
175193
[0.1.24]: https://github.com/scylladb/sphinx-scylladb-theme/compare/0.1.23...0.1.24
@@ -183,4 +201,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
183201
[0.1.15]: https://github.com/scylladb/sphinx-scylladb-theme/compare/0.1.14...0.1.15
184202
[0.1.14]: https://github.com/scylladb/sphinx-scylladb-theme/compare/0.1.13...0.1.14
185203
[0.1.13]: https://github.com/scylladb/sphinx-scylladb-theme/compare/0.1.12...0.1.13
186-
[0.1.12]: https://github.com/scylladb/sphinx-scylladb-theme/releases/tag/0.1.12
204+
[0.1.12]: https://github.com/scylladb/sphinx-scylladb-theme/releases/tag/0.1.12

poetry.lock

Lines changed: 20 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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 = "sphinx-scylladb-theme"
3-
version = "1.0.4"
3+
version = "1.0.5"
44
description = "A Sphinx Theme for ScyllaDB documentation projects"
55
authors = ["David García <[email protected]>"]
66
exclude = [".github", "config", "docs", ".postcss.config.js", ".prettierrc.json", "deploy.sh", "src", "package.json", "package-lock.json"]

sphinx_scylladb_theme/breadcrumbs.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
<div class="breadcrumbs">
2-
<span class="bread__item"
3-
><a href="{{ pathto(master_doc) }}" class="bread__highlight">
2+
<span class="bread__item">
3+
<a
4+
href="{% if 'contents' in master_doc %}{{html_baseurl}}{% else %}{{ pathto(master_doc) }}{% endif %}"
5+
class="bread__highlight"
6+
>
47
<i class="fas fa-home"></i> {{ project }}</a
58
></span
69
>

0 commit comments

Comments
 (0)