Skip to content

Commit

Permalink
Merge pull request #3 from gdoermann/bug/cli_generate_hash
Browse files Browse the repository at this point in the history
Bug/cli generate hash
  • Loading branch information
gdoermann authored Jun 6, 2024
2 parents dbcb858 + a2e58cf commit 6b93ec4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ target-version = ['py312']


[tool.bumpver]
current_version = "0.2.3"
current_version = "0.2.4"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
Expand Down
2 changes: 1 addition & 1 deletion src/manifestly/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""
from .core import Manifest

__version__ = "0.2.3"
__version__ = "0.2.4"


def get_version():
Expand Down
3 changes: 2 additions & 1 deletion src/manifestly/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import click
import fsspec

from manifestly import settings
from .core import Manifest


Expand All @@ -25,7 +26,7 @@ def cli():

@cli.command('generate')
@click.argument('directory')
@click.option('--hash-algorithm', default='sha256')
@click.option('--hash-algorithm', default=settings.DEFAULT_HASH_ALGORITHM)
@click.option('--output-file', default=None)
def generate_cmd(directory, hash_algorithm, output_file):
"""
Expand Down

0 comments on commit 6b93ec4

Please sign in to comment.