From 20c0bccdb7ab340fd9900c2f30f1d72c4e10aabb Mon Sep 17 00:00:00 2001 From: Zhen Lu Date: Tue, 2 Jan 2024 09:38:33 -0800 Subject: [PATCH] Fix file name for win build. (#47) --- lightspark-crypto-python/scripts/generate-windows.sh | 2 +- lightspark-crypto-python/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lightspark-crypto-python/scripts/generate-windows.sh b/lightspark-crypto-python/scripts/generate-windows.sh index 13cd47c..d70cb8e 100644 --- a/lightspark-crypto-python/scripts/generate-windows.sh +++ b/lightspark-crypto-python/scripts/generate-windows.sh @@ -13,6 +13,6 @@ rustup target add x86_64-pc-windows-msvc cargo build --profile release-smaller --target x86_64-pc-windows-msvc echo "Copying libraries..." -cp target/x86_64-pc-windows-msvc/release-smaller/lightspark_crypto.dll lightspark-crypto-python/src/lightspark_crypto/lightspark_crypto.dll +cp target/x86_64-pc-windows-msvc/release-smaller/lightspark_crypto.dll lightspark-crypto-python/src/lightspark_crypto/uniffi_lightspark_crypto.dll echo "All done!" diff --git a/lightspark-crypto-python/setup.py b/lightspark-crypto-python/setup.py index 554bc25..b33e30f 100644 --- a/lightspark-crypto-python/setup.py +++ b/lightspark-crypto-python/setup.py @@ -2,7 +2,7 @@ setup( name="lightspark_crypto_python", - version="0.1.5", + version="0.1.6", description="The Python language bindings for lightspark crypto operations", long_description=open("README.md").read(), long_description_content_type="text/markdown",