Skip to content
This repository has been archived by the owner on Sep 13, 2024. It is now read-only.

Commit

Permalink
Fix unclaimed calculations
Browse files Browse the repository at this point in the history
  • Loading branch information
FerranMarin committed May 29, 2022
1 parent 9fb0a59 commit ba8e89f
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion axie-scholar-utilities/source/axie/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '3.2.0'
__version__ = '3.2.1'
__all__ = [
'AxiePaymentsManager',
'AxieClaimsManager',
Expand Down
2 changes: 1 addition & 1 deletion axie-scholar-utilities/source/axie_scholar_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def check_file(file):

def run_cli():
""" Wrapper function for testing purposes"""
args = docopt(__doc__, version='Axie Scholar Payments CLI v3.2.0')
args = docopt(__doc__, version='Axie Scholar Payments CLI v3.2.1')
if args['payout']:
logging.info("I shall help you pay!")
payments_file_path = args['<payments_file>']
Expand Down
8 changes: 4 additions & 4 deletions axie-scholar-utilities/source/poetry.lock

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

4 changes: 2 additions & 2 deletions axie-scholar-utilities/source/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "Axie Scholar Utilities"
version = "3.2.0"
version = "3.2.1"
description = "Package to automate activites related to manage Axie Infinity Scholars. Specially aimed at managers with large scholar roasters."
authors = ["Ferran Marin <ferran.marin.llobet@gmail.com>"]
license = "GPL-3.0"
Expand All @@ -11,7 +11,7 @@ docopt = "^0.6.2"
jsonschema = "^3.2.0"
qrcode = "^7.3.1"
Pillow = "^9.0.1"
axie-utils = "^2.1.0"
axie-utils = "^2.1.1"

[tool.poetry.dev-dependencies]
mock = "^4.0.3"
Expand Down
2 changes: 1 addition & 1 deletion axie-scholar-utilities/source/trezor/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '3.2.0'
__version__ = '3.2.1'
__all__ = [
'TrezorAccountsSetup',
'TrezorAxiePaymentsManager',
Expand Down
2 changes: 1 addition & 1 deletion axie-scholar-utilities/source/trezor_axie_scholar_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def check_file(file):

def run_cli():
""" Wrapper function for testing purposes"""
args = docopt(__doc__, version='Trezor Axie Scholar Payments CLI v3.2.0')
args = docopt(__doc__, version='Trezor Axie Scholar Payments CLI v3.2.1')
if args['payout']:
logging.info("I shall help you pay!")
payments_file_path = args['<payments_file>']
Expand Down

0 comments on commit ba8e89f

Please sign in to comment.