Skip to content

Commit

Permalink
v1.0.0 version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBuchanan314 committed Feb 29, 2024
1 parent 4b4b78a commit e85c6d1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Convert between DAG-CBOR and Python objects at hundreds of megabytes per second.

Other than speed, a distinguishing feature is that it operates *non-recursively*. This means you can decode or encode arbitrarily deeply nested objects without running out of call stack (although of course you might still run out of heap)

### Installation
## Installation

From pypi:
```
Expand All @@ -17,7 +17,7 @@ cd dag-cbrrr
python3 -m pip install -v .
```

### Quickstart
## Quickstart

Here's the basics:
```py
Expand All @@ -43,6 +43,8 @@ class CID:
...
...

DagCborTypes = Union[str, bytes, int, bool, float, CID, list, dict, None]

def decode_dag_cbor(
data: bytes,
atjson_mode: bool=False,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "cbrrr"
version = "0.0.1"
version = "1.0.0"
authors = [
{ name="David Buchanan", email="[email protected]" },
]
Expand Down

0 comments on commit e85c6d1

Please sign in to comment.