From d196ab67594e9cd6adcdda75089bd7020253a08e Mon Sep 17 00:00:00 2001 From: Roberto Prevato Date: Fri, 28 Jul 2023 12:44:58 +0200 Subject: [PATCH] Unpins the dependencies on mkdocs and httpx (#43) --- CHANGELOG.md | 5 +++++ neoteroi/mkdocs/__init__.py | 2 +- pyproject.toml | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a7d784..185a627 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.4] - 2023-07-28 :parasol_on_ground: + +- Unpins the dependencies on `mkdocs` and `httpx`, to fix + [#42](https://github.com/Neoteroi/mkdocs-plugins/issues/42). + ## [1.0.3] - 2023-07-18 :cat: - Adds support for icons in cards (by @Andy2003). diff --git a/neoteroi/mkdocs/__init__.py b/neoteroi/mkdocs/__init__.py index 976498a..92192ee 100644 --- a/neoteroi/mkdocs/__init__.py +++ b/neoteroi/mkdocs/__init__.py @@ -1 +1 @@ -__version__ = "1.0.3" +__version__ = "1.0.4" diff --git a/pyproject.toml b/pyproject.toml index ed77780..eaf143e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,8 +25,8 @@ classifiers = [ keywords = ["MkDocs", "OpenAPI", "Swagger", "Markdown", "plugins", "extensions", "documentation"] dependencies = [ "essentials-openapi", - "mkdocs~=1.4.0", - "httpx<1", + "mkdocs", + "httpx", "click", "Jinja2", "rich",