Skip to content
Merged

Dev #17

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
14 changes: 10 additions & 4 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,13 @@ site_description: Type-safe discriminated unions for Pydantic models
site_url: https://talbotknighton.github.io/pydantic-discriminated/
repo_url: https://github.com/TalbotKnighton/pydantic-discriminated
repo_name: TalbotKnighton/pydantic-discriminated
# extra:
# version:
# provider: mike
# default: latest

# Uncomment this section to properly configure mike
extra:
version:
provider: mike
default: latest

theme:
name: material
palette:
Expand All @@ -24,7 +27,10 @@ theme:
plugins:
- search
- mike: # for versioned docs
# IMPORTANT: Change this configuration
version_selector: true
css_dir: css
javascript_dir: js
canonical_version: latest
- gen-files:
scripts:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "pydantic-discriminated"
version = "0.1.24"
version = "0.1.25"
description = "Type-safe discriminated unions for Pydantic models"
requires-python = ">=3.8"
dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion src/pydantic_discriminated/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
pydantic-discriminated: Type-safe discriminated unions for Pydantic models.
"""

__version__ = "0.1.24"
__version__ = "0.1.25"

# Import and expose the main components of the API
from pydantic_discriminated.api import ( # Assuming this is your main module file
Expand Down