Skip to content

Commit

Permalink
release: 0.2.0b0 (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
overcat authored Nov 28, 2024
1 parent fcd8cd3 commit 53a7c25
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 18 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[project]
name = "stellar-contract-bindings"
version = "0.1.0b1"
version = "0.2.0b0"
description = "CLI tool designed to generate language bindings for Stellar Soroban smart contracts."
readme = "README.md"
requires-python = ">=3.9"
authors = [{ name = "overcat" }]
license = { text = "Apache-2.0" }
keywords = ["stellar", "soroban"]
dependencies = ["click>=8.1.7", "jinja2>=3.1.4", "stellar-sdk>=12.0.0-beta6"]
dependencies = ["click>=8.1.7", "jinja2>=3.1.4", "stellar-sdk>=12.0.0"]

[project.scripts]
stellar-contract-bindings = "stellar_contract_bindings.cli:cli"
Expand Down
2 changes: 1 addition & 1 deletion stellar_contract_bindings/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.0b1"
__version__ = "0.2.0b0"
10 changes: 3 additions & 7 deletions tests/client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file was generated by stellar_contract_bindings v0.1.0b1 and stellar_sdk v12.0.0b6.
# This file was generated by stellar_contract_bindings v0.2.0b0 and stellar_sdk v12.0.0.
# Client is used to interact with the contract on the Stellar network synchronously,
# while ClientAsync is used to interact with the contract on the Stellar network asynchronously.
# If you don't need to interact with the contract asynchronously, you can remove the ClientAsync class and its methods.
Expand All @@ -7,12 +7,8 @@
from typing import Dict, List, Tuple, Optional, Union

from stellar_sdk import scval, xdr, Address, MuxedAccount, Keypair
from stellar_sdk.contract import (
AssembledTransaction,
AssembledTransactionAsync,
ContractClient,
ContractClientAsync,
)
from stellar_sdk.contract import AssembledTransaction, ContractClient
from stellar_sdk.contract import AssembledTransactionAsync, ContractClientAsync

NULL_ACCOUNT = "GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWHF"

Expand Down
16 changes: 8 additions & 8 deletions uv.lock

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

0 comments on commit 53a7c25

Please sign in to comment.