From 692f2aeb724b88d461c1e4de7123b3da3cff3229 Mon Sep 17 00:00:00 2001 From: "Ilya (Marshal)" Date: Wed, 13 Sep 2023 20:59:37 +0200 Subject: [PATCH] Make stable release --- Cargo.toml | 2 +- README.md | 4 +++- pyproject.toml | 7 +++++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f8b53fc..a43f363 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libipld" -version = "0.0.1-pre" +version = "1.0.0" edition = "2021" license = "MIT" description = "Python binding to the Rust IPLD library" diff --git a/README.md b/README.md index 6158f63..4b549c0 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,9 @@ print(libipld.decode_dag_cbor(b'\xa2aa\x0cabfhello!\x82\x00\x01')) - Decode CID (`decode_dag_cbor(bytes) -> dict`, `decode_dag_cbor_multi(bytes) -> list[dict]`) - Decode CAR (`decode_car(bytes) -> tuple[dict, dict[str, dict]]`). Returns a header and blocks mapped by CID. -## Installation +## Installing + +You can install or upgrade `libipld` via ```bash pip3 install -U libipld diff --git a/pyproject.toml b/pyproject.toml index de5eba8..de635bb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,15 +1,18 @@ [project] name = "libipld" description = "Python binding to the Rust IPLD library" -authors = [{ name = "Ilya (Marshal)", email = "ilya@marshal.dev" }] +authors = [ + {name = "Ilya (Marshal)", email = "ilya@marshal.dev"} +] license = "MIT" repository = "https://github.com/MarshalX/python-libipld" readme = "README.md" keywords = ["library", "lib", "ipld", "cid", "multibase", "multihash", "dag", "cbor", "json", "pb", "dag-cbor", "dag-json", "dag-pb"] requires-python = ">=3.7" classifiers = [ - "Development Status :: 3 - Alpha", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", + "Intended Audience :: Information Technology", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: OS Independent",