Skip to content

Commit a0cc06b

Browse files
committed
Prepare 9.4.0 release
1 parent ac918d6 commit a0cc06b

File tree

13 files changed

+46
-26
lines changed

13 files changed

+46
-26
lines changed

.vscode/settings.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"yaml.customTags": [
1515
"!ENV scalar",
1616
"!ENV sequence",
17-
"tag:yaml.org,2002:python/name:materialx.emoji.to_svg",
18-
"tag:yaml.org,2002:python/name:materialx.emoji.twemoji",
17+
"tag:yaml.org,2002:python/name:material.extensions.emoji.to_svg",
18+
"tag:yaml.org,2002:python/name:material.extensions.emoji.twemoji",
1919
"tag:yaml.org,2002:python/name:pymdownx.superfences.fence_code_format"
2020
]
2121
}

CHANGELOG

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
mkdocs-material-9.4.0 (2023-09-21)
2+
3+
* Added Belarusian translations
4+
* Added version info to entrypoint of package
5+
* Added emoji extension as a replacement for materialx
6+
* Improved slate color scheme (dark mode) - now even darker
7+
* Restructured project to improve development experience
8+
* Updated MkDocs to 1.5.3
9+
* Fixed #3890: Development mode crashes on Linux
10+
111
mkdocs-material-9.3.2+insiders-4.42.0 (2023-09-19)
212

313
* Added support for using git submodules in projects plugin

docs/changelog/index.md

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## Material for MkDocs
44

5+
### 9.4.0 <small>September 21, 2023</small> { id="9.4.0" }
6+
7+
- Added Belarusian translations
8+
- Added version info to entrypoint of package
9+
- Added emoji extension as a replacement for materialx
10+
- Improved slate color scheme (dark mode) - now even darker
11+
- Restructured project to improve development experience
12+
- Updated MkDocs to 1.5.3
13+
- Fixed #3890: Development mode crash on Linux
14+
515
### 9.3.2 <small>September 19, 2023</small> { id="9.3.2" }
616

717
- Updated Slovenian translations

docs/creating-your-site.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ theme:
6666
"yaml.customTags": [ // (1)!
6767
"!ENV scalar",
6868
"!ENV sequence",
69-
"tag:yaml.org,2002:python/name:materialx.emoji.to_svg",
70-
"tag:yaml.org,2002:python/name:materialx.emoji.twemoji",
69+
"tag:yaml.org,2002:python/name:material.extensions.emoji.to_svg",
70+
"tag:yaml.org,2002:python/name:material.extensions.emoji.twemoji",
7171
"tag:yaml.org,2002:python/name:pymdownx.superfences.fence_code_format"
7272
]
7373
}

docs/reference/icons-emojis.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ lines to `mkdocs.yml`:
4141
markdown_extensions:
4242
- attr_list
4343
- pymdownx.emoji:
44-
emoji_index: !!python/name:materialx.emoji.twemoji
45-
emoji_generator: !!python/name:materialx.emoji.to_svg
44+
emoji_index: !!python/name:material.extensions.emoji.twemoji
45+
emoji_generator: !!python/name:material.extensions.emoji.to_svg
4646
```
4747
4848
The following icon sets are bundled with Material for MkDocs:

docs/schema/extensions/pymdownx.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -168,11 +168,11 @@
168168
"properties": {
169169
"emoji_generator": {
170170
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.emoji.emoji_generator",
171-
"default": "!!python/name:materialx.emoji.to_svg"
171+
"default": "!!python/name:material.extensions.emoji.to_svg"
172172
},
173173
"emoji_index": {
174174
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.emoji.emoji_index",
175-
"default": "!!python/name:materialx.emoji.twemoji"
175+
"default": "!!python/name:material.extensions.emoji.twemoji"
176176
},
177177
"options": {
178178
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.emoji.options.custom_icons",

docs/setup/changing-the-logo-and-icons.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,8 @@ Then, add the following lines to `mkdocs.yml`:
129129
``` yaml
130130
markdown_extensions:
131131
- pymdownx.emoji:
132-
emoji_index: !!python/name:materialx.emoji.twemoji
133-
emoji_generator: !!python/name:materialx.emoji.to_svg
132+
emoji_index: !!python/name:material.extensions.emoji.twemoji
133+
emoji_generator: !!python/name:material.extensions.emoji.to_svg
134134
options:
135135
custom_icons:
136136
- overrides/.icons

docs/setup/extensions/index.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ syntax extensions for technical writing.
1515

1616
## Supported extensions
1717

18-
The following extensions are all supported by Material for MkDocs and therefore
18+
The following extensions are all supported by Material for MkDocs and therefore
1919
strongly recommended. Click on each extension to learn about its purpose and
2020
configuration:
2121

@@ -77,8 +77,8 @@ your documentation project.
7777

7878
### Minimal configuration
7979

80-
This configuration is a good starting point for when you're using Material for
81-
MkDocs for the first time. The best idea is to explore the [reference], and
80+
This configuration is a good starting point for when you're using Material for
81+
MkDocs for the first time. The best idea is to explore the [reference], and
8282
gradually add what you want to use:
8383

8484
``` yaml
@@ -121,8 +121,8 @@ markdown_extensions:
121121
- pymdownx.caret
122122
- pymdownx.details
123123
- pymdownx.emoji:
124-
emoji_index: !!python/name:materialx.emoji.twemoji
125-
emoji_generator: !!python/name:materialx.emoji.to_svg
124+
emoji_index: !!python/name:material.extensions.emoji.twemoji
125+
emoji_generator: !!python/name:material.extensions.emoji.to_svg
126126
- pymdownx.highlight
127127
- pymdownx.inlinehilite
128128
- pymdownx.keys

docs/setup/extensions/python-markdown-extensions.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -222,8 +222,8 @@ in `*.svg` file format into the resulting HTML page. Enable it via `mkdocs.yml`:
222222
``` yaml
223223
markdown_extensions:
224224
- pymdownx.emoji:
225-
emoji_index: !!python/name:materialx.emoji.twemoji # (1)!
226-
emoji_generator: !!python/name:materialx.emoji.to_svg
225+
emoji_index: !!python/name:material.extensions.emoji.twemoji # (1)!
226+
emoji_generator: !!python/name:material.extensions.emoji.to_svg
227227
```
228228

229229
1. [Python Markdown Extensions] uses the `pymdownx` namespace, but in order to
@@ -241,7 +241,7 @@ The following configuration options are supported:
241241
``` yaml
242242
markdown_extensions:
243243
- pymdownx.emoji:
244-
emoji_index: !!python/name:materialx.emoji.twemoji
244+
emoji_index: !!python/name:material.extensions.emoji.twemoji
245245
```
246246

247247
<!-- md:option pymdownx.emoji.emoji_generator -->
@@ -253,7 +253,7 @@ The following configuration options are supported:
253253
``` yaml
254254
markdown_extensions:
255255
- pymdownx.emoji:
256-
emoji_generator: !!python/name:materialx.emoji.to_svg
256+
emoji_generator: !!python/name:material.extensions.emoji.to_svg
257257
```
258258

259259
<!-- md:option pymdownx.emoji.options.custom_icons -->
@@ -265,8 +265,8 @@ The following configuration options are supported:
265265
``` yaml
266266
markdown_extensions:
267267
- pymdownx.emoji:
268-
emoji_index: !!python/name:materialx.emoji.twemoji
269-
emoji_generator: !!python/name:materialx.emoji.to_svg
268+
emoji_index: !!python/name:material.extensions.emoji.twemoji
269+
emoji_generator: !!python/name:material.extensions.emoji.to_svg
270270
options:
271271
custom_icons:
272272
- overrides/.icons

material/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
1919
# IN THE SOFTWARE.
2020

21-
__version__ = "9.3.2"
21+
__version__ = "9.4.0"

material/templates/base.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<link rel="alternate" type="application/rss+xml" title="{{ lang.t('rss.updated') }}" href="{{ 'feed_rss_updated.xml' | url }}">
3333
{% endif %}
3434
<link rel="icon" href="{{ config.theme.favicon | url }}">
35-
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-9.3.2">
35+
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-9.4.0">
3636
{% endblock %}
3737
{% block htmltitle %}
3838
{% if page.meta and page.meta.title %}

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mkdocs-material",
3-
"version": "9.3.2",
3+
"version": "9.4.0",
44
"description": "Documentation that simply works",
55
"keywords": [
66
"mkdocs",

0 commit comments

Comments
 (0)