Skip to content

Commit

Permalink
Make stable release
Browse files Browse the repository at this point in the history
  • Loading branch information
MarshalX committed Sep 13, 2023
1 parent 53c262a commit 692f2ae
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 692f2ae

Please sign in to comment.