From f441a2eb75b31d575c24f6a06f465203de1661bf Mon Sep 17 00:00:00 2001 From: Zach Mueller Date: Thu, 7 Mar 2024 09:09:39 -0500 Subject: [PATCH] Release: v0.5.0 --- setup.py | 2 +- src/doc_builder/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 9e6851c0..870259fd 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( name="hf-doc-builder", - version="0.5.0.dev0", + version="0.5.0", author="Hugging Face, Inc.", license="Apache", author_email="docs@huggingface.co", diff --git a/src/doc_builder/__init__.py b/src/doc_builder/__init__.py index 7610c903..df2f7941 100644 --- a/src/doc_builder/__init__.py +++ b/src/doc_builder/__init__.py @@ -17,7 +17,7 @@ # There's no way to ignore "F401 '...' imported but unused" warnings in this # module, but to preserve other warnings. So, don't check this module at all. -__version__ = "0.5.0.dev0" +__version__ = "0.5.0" from .autodoc import autodoc from .build_doc import build_doc