Skip to content

Commit

Permalink
🔖 release: v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
SigureMo committed Oct 3, 2023
1 parent dcc71c4 commit c482de3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ build:
poetry build

release:
@echo 'Tagging {{VERSION}}...'
git tag {{VERSION}}
@echo 'Tagging v{{VERSION}}...'
git tag "v{{VERSION}}"
@echo 'Push to GitHub to trigger publish process...'
git push --tags

Expand Down
4 changes: 2 additions & 2 deletions moelib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Meta information for the project.
from __future__ import annotations

__version__ = "0.1.0"
__version__ = "0.1.1"
__author__ = "Nyakku Shigure"
__year__ = "2022"
__year__ = "2023"
__project_info__ = {
"name": __name__,
"version": __version__,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "moelib"
version = "0.1.0"
version = "0.1.1"
description = ""
authors = ["Nyakku Shigure <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit c482de3

Please sign in to comment.