From 5138e3a42e2ce6f29fb00a5b2dd23dbb20196daa Mon Sep 17 00:00:00 2001 From: Amin Rezaei Date: Sun, 12 Feb 2023 19:24:22 +0330 Subject: [PATCH] fix: portable binaries + release v0.9.10 --- README.md | 2 +- pyproject.toml | 2 +- rift/runtime/riftlib.py | 10 +++++----- setup.py | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 29a0967..aabe55a 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ # Rift -[![PyPI version](https://img.shields.io/badge/rift--framework-0.9.9-informational?style=flat-square&color=FFFF91&labelColor=360825)](https://pypi.org/project/rift-framework/) +[![PyPI version](https://img.shields.io/badge/rift--framework-0.9.10-informational?style=flat-square&color=FFFF91&labelColor=360825)](https://pypi.org/project/rift-framework/) [![Telegram](https://img.shields.io/badge/Telegram-@skyring__org-informational?style=flat-square&color=0088cc&labelColor=360825)](https://t.me/skyring_org) [![Telegram](https://img.shields.io/badge/Docs-docs.skyring.io/rift-informational?style=flat-square&color=6A0F49&labelColor=360825)](https://docs.skyring.io/rift/) diff --git a/pyproject.toml b/pyproject.toml index 45b8dbc..45cebae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "rift-framework" -version = "0.9.9" +version = "0.9.10" description = "The magical Python -> TON Portal" authors = ["Amin Rezaei "] license = "MIT" diff --git a/rift/runtime/riftlib.py b/rift/runtime/riftlib.py index 94fddb9..3e41e50 100644 --- a/rift/runtime/riftlib.py +++ b/rift/runtime/riftlib.py @@ -11,11 +11,11 @@ class RiftLibSetup: urls = { - "windows": "https://github.com/AminRezaei0x443/ton/releases/download/v0.1.0/rift-lib-win64.dll", - "darwin": "https://github.com/AminRezaei0x443/ton/releases/download/v0.1.0/rift-lib-macOS.dylib", - "linux-u18": "https://github.com/AminRezaei0x443/ton/releases/download/v0.1.0/rift-lib-ubuntu-18.04.so", - "linux-u20": "https://github.com/AminRezaei0x443/ton/releases/download/v0.1.0/rift-lib-ubuntu-20.04.so", - "linux-u22": "https://github.com/AminRezaei0x443/ton/releases/download/v0.1.0/rift-lib-ubuntu-22.04.so", + "windows": "https://github.com/AminRezaei0x443/ton/releases/download/v0.1.5/rift-lib-win64.dll", + "darwin": "https://github.com/AminRezaei0x443/ton/releases/download/v0.1.5/rift-lib-macOS.dylib", + "linux-u18": "https://github.com/AminRezaei0x443/ton/releases/download/v0.1.5/rift-lib-ubuntu-18.04.so", + "linux-u20": "https://github.com/AminRezaei0x443/ton/releases/download/v0.1.5/rift-lib-ubuntu-20.04.so", + "linux-u22": "https://github.com/AminRezaei0x443/ton/releases/download/v0.1.5/rift-lib-ubuntu-22.04.so", } @classmethod diff --git a/setup.py b/setup.py index 865dae4..c0245d0 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="rift-framework", - version="0.9.9", + version="0.9.10", description="A magical Python3 -> TON portal", license="MIT", packages=find_packages(exclude=["test"]),