From d87c24d50d677b1d06bc112043c2038a81f89a70 Mon Sep 17 00:00:00 2001 From: 12rambau Date: Tue, 25 Jan 2022 11:37:18 +0100 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.0.0=20=E2=86=92=200.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .cz.toml | 6 +++--- CHANGELOG.md | 14 ++++++++++++++ setup.py | 2 +- sphinxcontrib/icon/__init__.py | 2 +- 4 files changed, 19 insertions(+), 5 deletions(-) diff --git a/.cz.toml b/.cz.toml index cefb380..3439fc5 100644 --- a/.cz.toml +++ b/.cz.toml @@ -1,6 +1,6 @@ -[commitizen] +[tool.commitizen] changelog_file = "CHANGELOG.md" tag_format = "v$major.$minor.$patch$prerelease" update_changelog_on_bump = true -version = "0.0.0" -version_files = ["setup.py:version", "src/__init__.py:__version__"] \ No newline at end of file +version = "0.1.0" +version_files = ["setup.py:version", "sphinxcontrib/icon/__init__.py:__version__"] diff --git a/CHANGELOG.md b/CHANGELOG.md index e69de29..a0de192 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -0,0 +1,14 @@ +## v0.1.0 (2022-01-25) + +### Fix + +- only import the css and js mimetype +- use relative path to assets files + +### Refactor + +- black formatting + +### Feat + +- first fonctional version diff --git a/setup.py b/setup.py index ab1dcc7..60cd1e4 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ def run(self): # set the version number -version = "0.0.0" +version = "0.1.0" # set some text as CONST variables for readability DESCRIPTION = "A sphinx custom role to embed inline fontawesome incon in the latex and html outputs" diff --git a/sphinxcontrib/icon/__init__.py b/sphinxcontrib/icon/__init__.py index b0140d4..df0f5a9 100644 --- a/sphinxcontrib/icon/__init__.py +++ b/sphinxcontrib/icon/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.0" +__version__ = "0.1.0" __author__ = "Pierrick Rambaud" __email__ = "pierrick.rambaud49@gmail.com"