2 Commits

Author SHA1 Message Date
9e15c55227 Bump to 0.0.1a8
Forgot in 6524cc675b.
2020-07-07 15:13:14 +02:00
6524cc675b Use colour in README and bump once again
Some checks failed
continuous-integration/drone/push Build is failing
2020-07-07 15:08:43 +02:00
3 changed files with 16 additions and 9 deletions

View File

@ -1,4 +1,10 @@
# flat-tree 0.0.1a8 (UNRELEASED)
# flat-tree 0.0.1a9 (UNRELEASED)
# flat-tree 0.0.1a8 (2020-07-07)
## Trivial/Internal Changes
- Use colours in the README for more happiness
# flat-tree 0.0.1a7 (2020-07-07)

View File

@ -14,16 +14,17 @@
## Install
```
```sh
$ pip install flat-tree
```
## Example
```
>>> from flat_tree.accessor import FlatTreeIterator
>>> tree_iter = FlatTreeIterator()
>>> assert tree_iter.index == 0
>>> assert tree_iter.parent() == 1
>>> assert tree_iter.parent() == 3
```python
from flat_tree.accessor import FlatTreeIterator
tree_iter = FlatTreeIterator()
assert tree_iter.index == 0
assert tree_iter.parent() == 1
assert tree_iter.parent() == 3
```

View File

@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api"
[tool.poetry]
name = "flat-tree"
version = "0.0.1a7"
version = "0.0.1a8"
description = "Utilities for navigating flat trees"
authors = ["Decentral1se <hi@decentral1.se>"]
maintainers = ["Decentral1se <hi@decentral1.se>"]