Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pin mkdocs materal version #167

Merged
merged 2 commits into from
Sep 20, 2023
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.

## [0.8.8] - 2023-09-20

### Changed

- Pin `mkdocs-material` version to fix docs build [#167](https://github.com/datajoint/pharus/pull/167)

## [0.8.7] - 2023-08-08

### Added
Expand Down Expand Up @@ -315,6 +321,8 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
- Support for DataJoint attribute types: `varchar`, `int`, `float`, `datetime`, `date`, `time`, `decimal`, `uuid`.
- Check dependency utility to determine child table references.

[0.8.8]: https://github.com/datajoint/pharus/compare/0.8.7...0.8.8
[0.8.7]: https://github.com/datajoint/pharus/compare/0.8.6...0.8.7
[0.8.6]: https://github.com/datajoint/pharus/compare/0.8.5...0.8.6
[0.8.5]: https://github.com/datajoint/pharus/compare/0.8.4...0.8.5
[0.8.4]: https://github.com/datajoint/pharus/compare/0.8.3...0.8.4
Expand Down
2 changes: 1 addition & 1 deletion docs/.docker/pip_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
mkdocs-material
mkdocs-material==9.1.17
mkdocs-redirects
mkdocstrings
mkdocstrings-python
Expand Down
2 changes: 1 addition & 1 deletion pharus/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def api_version() -> str:
Content-Type: application/json
{
"version": "0.8.7"
"version": "0.8.8"
}
```
Expand Down
2 changes: 1 addition & 1 deletion pharus/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Package metadata."""
__version__ = "0.8.7"
__version__ = "0.8.8"
Loading