Skip to content

Commit

Permalink
bump version number to 0.1.1 + add docstring
Browse files Browse the repository at this point in the history
As the old "tetra" project by TheCulliganMan had the v0.1.0, and sdists can't be overridden.
  • Loading branch information
nerdoc committed Apr 10, 2024
1 parent a7d91c9 commit f03360d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tetra/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""Full stack component framework for Django using Alpine.js"""
from .components import BasicComponent, Component, public
from .library import Library

__version__ = "0.1.0"
__version__ = "0.1.1"
__version_info__ = tuple([int(num) for num in __version__.split(".")])

0 comments on commit f03360d

Please sign in to comment.