Skip to content

Commit

Permalink
bump: ✈️ v0.6.2 → v0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
engineervix committed Sep 27, 2022
1 parent a178b3e commit 5863673
Show file tree
Hide file tree
Showing 8 changed files with 163 additions and 10 deletions.
159 changes: 156 additions & 3 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ten-lists",
"version": "0.6.2",
"version": "0.6.3",
"description": "This project provides both a CLI and a webapp, which generate a playlist of 10 Bible Chapters (represented by 10 mp3 files) to be listened to on any given day, according to Professor Grant Horner's 10 lists Bible-Reading System.",
"scripts": {
"build": "grunt rm && grunt all",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ sections = ["FUTURE", "STDLIB", "FLASK", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDE
default_section = "THIRDPARTY"

[tool.commitizen]
version = "0.6.2"
version = "0.6.3"
version_files = [
# "package.json",
"tenlists/__init__.py",
Expand Down
2 changes: 1 addition & 1 deletion tenlists/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.6.2"
__version__ = "0.6.3"
__version_info__ = tuple([int(num) if num.isdigit() else num for num in __version__.replace("-", ".", 1).split(".")])
2 changes: 1 addition & 1 deletion tenlists/cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.6.2"
__version__ = "0.6.3"
__version_info__ = tuple([int(num) if num.isdigit() else num for num in __version__.replace("-", ".", 1).split(".")])
2 changes: 1 addition & 1 deletion tenlists/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.6.2"
__version__ = "0.6.3"
__version_info__ = tuple([int(num) if num.isdigit() else num for num in __version__.replace("-", ".", 1).split(".")])
2 changes: 1 addition & 1 deletion tenlists/webapp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.6.2"
__version__ = "0.6.3"
__version_info__ = tuple([int(num) if num.isdigit() else num for num in __version__.replace("-", ".", 1).split(".")])

0 comments on commit 5863673

Please sign in to comment.