Skip to content

Commit

Permalink
bump: version 0.0.0 → 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
12rambau committed Jan 25, 2022
1 parent c7ce16c commit d87c24d
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .cz.toml
Original file line number Diff line number Diff line change
@@ -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__"]
version = "0.1.0"
version_files = ["setup.py:version", "sphinxcontrib/icon/__init__.py:__version__"]
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion sphinxcontrib/icon/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.0.0"
__version__ = "0.1.0"
__author__ = "Pierrick Rambaud"
__email__ = "[email protected]"

Expand Down

0 comments on commit d87c24d

Please sign in to comment.