Skip to content

Commit

Permalink
Increment version to 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kinto-b committed Dec 27, 2024
1 parent 3cf5982 commit 1e16f61
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
7 changes: 7 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# 0.0.2

* Added a `--lang` option, currently `de` and `es` are supported.

# 0.0.1

* Initial release
1 change: 1 addition & 0 deletions karten/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.0.2"
2 changes: 2 additions & 0 deletions karten/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

import click

from . import __version__
from .card import initialise_model, card_collect, card_format, CardError
from .deck import deck_write
from .kindle import kindle_read
Expand All @@ -19,6 +20,7 @@


@click.group()
@click.version_option(__version__, prog_name="karten")
def cli(): # pylint: disable=missing-docstring
pass

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="karten",
version="0.0.1",
version="0.0.2",
packages=find_packages(),
install_requires=["click", "google-generativeai"],
entry_points={
Expand Down

0 comments on commit 1e16f61

Please sign in to comment.