Skip to content

Commit

Permalink
added v0.2.1 code
Browse files Browse the repository at this point in the history
  • Loading branch information
Descent098 committed Aug 2, 2021
1 parent 6a63cf2 commit c05ac72
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 10 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog


## V0.2.1; August 2nd 2021

Fixed bugs after release

### Bug fixes
- Fixed the fact that colored was not included as setup.py dependency


## V0.2.0; August 2nd 2021

The focus for this release is to add new features and themes
Expand Down
2 changes: 1 addition & 1 deletion ezcv/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def new_section(section_name:str) -> bool:

def main():
"""The primary entrypoint for the ezcv cli"""
args = docopt(usage, version="0.2.0")
args = docopt(usage, version="0.2.1")

if len(argv) == 1: # Print usage if no arguments are given
print("\n", usage)
Expand Down
19 changes: 10 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def get_content(*filename:str) -> str:

setuptools.setup(
name = "ezcv",
version = "0.2.0",
version = "0.2.1",
author = "Kieran Wood",
author_email = "kieran@canadiancoding.ca",
description = "An easy to use personal site generator",
Expand All @@ -48,14 +48,15 @@ def get_content(*filename:str) -> str:
},

install_requires = [
"docopt", # Used for argument parsing if you are writing a CLI
"pyyaml", # Used for config file parsing
"jinja2", # used as middlewear for generating templates
"markdown", # Used to parse markdown
"tqdm", # Used to generate progress bars
"requests", # Used to download remote themes
"exifread", # Used to read exif data from images
"python-markdown-math" # Used to render latex math equations
"docopt", # Used for argument parsing if you are writing a CLI
"pyyaml", # Used for config file parsing
"jinja2", # used as middlewear for generating templates
"markdown", # Used to parse markdown
"tqdm", # Used to generate progress bars
"requests", # Used to download remote themes
"exifread", # Used to read exif data from images
"python-markdown-math", # Used to render latex math equations
"colored"
],
extras_require = {
"dev" : ["mkdocs", # Used to create HTML versions of the markdown docs in the docs directory
Expand Down

0 comments on commit c05ac72

Please sign in to comment.