Skip to content

Commit

Permalink
release v0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
snarfed committed May 18, 2023
1 parent 4f33428 commit 54c9d69
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 10 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ TODO

## Changelog

### 0.2 - 2023-05-18

Implement repo and commit chain in new Repo class, including pluggable storage. This completes the first pass at all PDS data structures. Next release will include initial implementations of the `com.atproto.sync.*` XRPC methods.

### 0.1 - 2023-04-30

Initial release! Still very in progress. MST, Walker, and Diff classes are mostly complete and working. Repo, commits, and sync XRPC methods are still in progress.
Expand Down
5 changes: 3 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
'show-inheritance': True,
'members': True,
'special-members': True,
'exclude-members': '__eq__, __getnewargs__, __hash__, __getstate__, __new__, __repr__, __weakref__',
}

# Napoleon settings
Expand Down Expand Up @@ -87,9 +88,9 @@
# built documents.
#
# The short X.Y version.
version = '0.1'
version = '0.2'
# The full version, including alpha/beta/rc tags.
release = '0.1'
release = '0.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
24 changes: 17 additions & 7 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
arroba
------

Python implementation of `Bluesky <https://blueskyweb.xyz/>`__\ ’s low
level `AT Protocol <https://atproto.com/>`__, including `data
repository <https://atproto.com/guides/data-repos>`__, `Merkle search
tree <https://atproto.com/guides/data-repos>`__, and `com.atproto.sync
XRPC methods <https://atproto.com/lexicons/com-atproto-sync>`__.
Python implementation of `Bluesky <https://blueskyweb.xyz/>`__
`PDS <https://atproto.com/guides/data-repos>`__ and `AT
Protocol <https://atproto.com/specs/atp>`__, including data repository,
Merkle search tree, and `com.atproto.sync XRPC
methods <https://atproto.com/lexicons/com-atproto-sync>`__.

*Arroba* is the Spanish word for the `@ character (“at
sign”). <https://en.wikipedia.org/wiki/At_sign>`__
*Arroba* is the Spanish word for the `@
character <https://en.wikipedia.org/wiki/At_sign>`__ (“at sign”).

Install from `PyPI <https://pypi.org/project/arroba/>`__ with
``pip install arroba``.
Expand All @@ -27,6 +27,16 @@ TODO
Changelog
---------

0.2 - 2023-05-18
~~~~~~~~~~~~~~~~

Implement repo and commit chain in new Repo class, including pluggable
storage. This completes the first pass at all PDS data structures. Next
release will include initial implementations of the
``com.atproto.sync.*`` XRPC methods.

.. _section-1:

0.1 - 2023-04-30
~~~~~~~~~~~~~~~~

Expand Down
8 changes: 8 additions & 0 deletions docs/source/arroba.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ mst
---
.. automodule:: arroba.mst

repo
----
.. automodule:: arroba.repo

storage
-------
.. automodule:: arroba.storage

util
----
.. automodule:: arroba.util
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ packages = ['arroba']

[project]
name = 'arroba'
version = '0.1'
version = '0.2'
authors = [
{ name='Ryan Barrett', email='[email protected]' },
]
Expand Down

0 comments on commit 54c9d69

Please sign in to comment.