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: 10 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
mkdocs-ng-material-9.7.7 (2026-04-27)

* First release of the mkdocs-ng fork
* Upstream entered maintenance mode; fork continues active development
See https://github.com/squidfunk/mkdocs-material/issues/8523
* Rebranded as mkdocs-ng-material under the mkdocs-ng ecosystem
* Updated all documentation links and references for the new project home
* Added release drafter and PR autolabeler workflows
* Fixed documentation build workflow for the mkdocs-ng organization

mkdocs-material-9.7.6 (2026-03-19)

* Automatically disable MkDocs 2.0 warning for forks of MkDocs
Expand Down
2 changes: 1 addition & 1 deletion docs/blog/posts/git-sparse-checkout.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: 3.x
- run: pip install mkdocs-material
- run: pip install mkdocs-ng-material
- run: mkdocs gh-deploy --force
```

Expand Down
2 changes: 1 addition & 1 deletion docs/blog/posts/insiders-now-free-for-everyone.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ Thus, please adjust your `requirements.txt` and GitHub Actions workflows:

```diff
- pip install git+https://${GH_TOKEN}@github.com/mkdocs-ng/mkdocs-material-insiders. git
+ pip install mkdocs-material
+ pip install mkdocs-ng-material

```

Expand Down
17 changes: 17 additions & 0 deletions docs/changelog/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@

## Material for MkDocs

### 9.7.7 <small>April 27, 2026</small> { id="9.7.7" }

!!! info "First release of the mkdocs-ng fork"

[Upstream Material for MkDocs entered maintenance mode][issue-8523] on
November 11, 2025, and will no longer receive new features or bug fixes
beyond critical security updates. This fork continues active development
under the [mkdocs-ng] organization to keep the project alive and evolving.

[issue-8523]: https://github.com/squidfunk/mkdocs-material/issues/8523
[mkdocs-ng]: https://github.com/mkdocs-ng

- Rebranded as mkdocs-ng-material under the mkdocs-ng ecosystem
- Updated all documentation links and references for the new project home
- Added release drafter and PR autolabeler workflows
- Fixed documentation build workflow for the mkdocs-ng organization

### 9.7.6 <small>March 19, 2026</small> { id="9.7.6" }

- Automatically disable MkDocs 2.0 warning for forks of MkDocs
Expand Down
8 changes: 4 additions & 4 deletions docs/publishing-your-site.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ jobs:
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV # (3)!
- uses: actions/cache@v4
with:
key: mkdocs-material-${{ env.cache_id }}
key: mkdocs-ng-material-${{ env.cache_id }}
path: ~/.cache # (4)!
restore-keys: |
mkdocs-material-
- run: pip install mkdocs-material # (5)!
mkdocs-ng-material-
- run: pip install mkdocs-ng-material # (5)!
- run: mkdocs gh-deploy --force
```

Expand Down Expand Up @@ -129,7 +129,7 @@ pages:
stage: deploy
image: python:latest
script:
- pip install mkdocs-material
- pip install mkdocs-ng-material
- mkdocs build --site-dir public
cache:
key: ${CI_COMMIT_REF_SLUG}
Expand Down
2 changes: 1 addition & 1 deletion material/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.

__version__ = "9.7.6"
__version__ = "9.7.7"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mkdocs-ng-material",
"version": "9.7.6",
"version": "9.7.7",
"description": "Documentation that simply works",
"keywords": [
"mkdocs",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export function renderPrivateSponsor(
): HTMLElement {
return (
<a
href="https://github.com/sponsors/squidfunk?metadata_origin=docs"
href="https://github.com/sponsors/mkdocs-ng?metadata_origin=docs"
class="mdx-sponsorship__item mdx-sponsorship__item--private"
>
+{count}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
height: px2rem(18px);

// Slate theme, i.e. dark mode
[data-md-color-scheme="slate"] &[src*="squidfunk"] {
[data-md-color-scheme="slate"] &[src*="mkdocs-ng"] {
filter: invert(1); /* stylelint-disable-line */
}
}
Expand Down
Loading