Skip to content

Commit 7b24840

Browse files
committed
fix versioning and remove old files
1 parent 54211fb commit 7b24840

File tree

8 files changed

+13
-68
lines changed

8 files changed

+13
-68
lines changed

.gitignore

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,12 @@ libit/__pycache__/asset.cpython-38.pyc
1818
*.pyc
1919

2020
.vscode/*
21-
/__pycache__/*
21+
/__pycache__/*
22+
23+
# PyPI credentials (IMPORTANT: Never commit these!)
24+
_pypi_token
25+
_pypi_user
26+
_pypi_pass
27+
_pypi_*
28+
*.token
29+
*.credentials

build/lib/libit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Supports Bitcoin, Ethereum, Tron, Litecoin, Dogecoin, Bitcoin Cash, Dash, Zcash, and Vertcoin.
44
"""
55

6-
__version__ = "5.3.0"
6+
__version__ = "5.3.1"
77

88
# Core imports from lib (Legacy support)
99
from .lib import (

dist/libit-5.0.4-py3-none-any.whl

-31.7 KB
Binary file not shown.

dist/libit-5.0.4.tar.gz

-33.9 KB
Binary file not shown.

final_test.py

Lines changed: 0 additions & 63 deletions
This file was deleted.

libit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Supports Bitcoin, Ethereum, Tron, Litecoin, Dogecoin, Bitcoin Cash, Dash, Zcash, and Vertcoin.
44
"""
55

6-
__version__ = "5.3.0"
6+
__version__ = "5.3.1"
77

88
# Core imports from lib (Legacy support)
99
from .lib import (

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "libit"
7-
version = "5.0.4"
7+
version = "5.3.1"
88
description = "Professional Bitcoin, Ethereum and Tron wallet generation library with support for multiple address formats"
99
readme = "README.md"
1010
license = {text = "MIT"}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="libit",
8-
version="5.0.4",
8+
version="5.3.1",
99
license="http://opensource.org/licenses/MIT",
1010
packages=find_packages(),
1111
install_requires=["pycryptodome>=3.15.0", "ecdsa>=0.18.0"],

0 commit comments

Comments
 (0)