Skip to content

Commit 9ce260a

Browse files
committed
release v0.6
1 parent a9fb108 commit 9ce260a

4 files changed

Lines changed: 21 additions & 21 deletions

File tree

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,7 @@ This configures the Flask app to serve the methods registered with the lexrpc se
136136

137137
## TODO
138138

139-
* support record types, eg via type `ref` and `ref` field pointing to the nsid. [example here](https://github.com/bluesky-social/atproto/blob/main/lexicons/app/bsky/graph/follow.json#L13).
140-
* check out [atproto@63b9873bb1699b6bce54e7a8d3db2fcbd2cfc5ab](https://github.com/snarfed/atproto/commit/63b9873bb1699b6bce54e7a8d3db2fcbd2cfc5ab)!
139+
* schema validation for records
141140

142141

143142
Release instructions
@@ -228,7 +227,7 @@ Here's how to package, test, and ship a new release.
228227
229228
## Changelog
230229
231-
### 0.6 - unreleased
230+
### 0.6 - 2024-03-16
232231
233232
* Drop `typing-extensions` version pin now that [typing-validation has been updated to be compatible with it](https://github.com/hashberg-io/typing-validation/issues/1).
234233
* Update bundled `app.bsky` and `com.atproto` lexicons, as of [bluesky-social/atproto@f45eef3](https://github.com/bluesky-social/atproto/commit/f45eef3414f8827ba3a6958a7040c7e38bfd6282).

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@
8888
# built documents.
8989
#
9090
# The short X.Y version.
91-
version = '0.5'
91+
version = '0.6'
9292
# The full version, including alpha/beta/rc tags.
93-
release = '0.5'
93+
release = '0.6'
9494

9595
# The language for content autogenerated by Sphinx. Refer to documentation
9696
# for a list of supported languages.

docs/index.rst

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -189,17 +189,7 @@ set to ``application/json``.
189189
TODO
190190
----
191191

192-
- support record types, eg via type ``ref`` and ``ref`` field pointing
193-
to the nsid. `example
194-
here <https://github.com/bluesky-social/atproto/blob/main/lexicons/app/bsky/graph/follow.json#L13>`__.
195-
196-
- check out
197-
`atproto@63b9873bb1699b6bce54e7a8d3db2fcbd2cfc5ab <https://github.com/snarfed/atproto/commit/63b9873bb1699b6bce54e7a8d3db2fcbd2cfc5ab>`__!
198-
199-
- `extensions <https://atproto.com/guides/lexicon#extensibility>`__. is
200-
there anything to do? ah, `they’re currently TODO in the
201-
spec <https://atproto.com/specs/xrpc#todos>`__.
202-
- `authentication <https://atproto.com/specs/xrpc#authentication>`__
192+
- schema validation for records
203193

204194
Release instructions
205195
--------------------
@@ -321,6 +311,17 @@ Here’s how to package, test, and ship a new release.
321311
Changelog
322312
---------
323313

314+
0.6 - 2024-03-16
315+
~~~~~~~~~~~~~~~~
316+
317+
- Drop ``typing-extensions`` version pin now that `typing-validation
318+
has been updated to be compatible with
319+
it <https://github.com/hashberg-io/typing-validation/issues/1>`__.
320+
- Update bundled ``app.bsky`` and ``com.atproto`` lexicons, as of
321+
`bluesky-social/atproto@f45eef3 <https://github.com/bluesky-social/atproto/commit/f45eef3414f8827ba3a6958a7040c7e38bfd6282>`__.
322+
323+
.. _section-1:
324+
324325
0.5 - 2023-12-10
325326
~~~~~~~~~~~~~~~~
326327

@@ -334,7 +335,7 @@ Changelog
334335
- Bug fix: don’t infinite loop if ``refreshSession`` fails.
335336
- Other minor authentication bug fixes.
336337

337-
.. _section-1:
338+
.. _section-2:
338339

339340
0.4 - 2023-10-28
340341
~~~~~~~~~~~~~~~~
@@ -375,7 +376,7 @@ Changelog
375376
- Add the ``error`` field to the JSON response bodies for most error
376377
responses.
377378

378-
.. _section-2:
379+
.. _section-3:
379380

380381
0.3 - 2023-08-29
381382
~~~~~~~~~~~~~~~~
@@ -387,7 +388,7 @@ Changelog
387388
- Add new ``Server.register`` method for manually registering handlers.
388389
- Bug fix for server ``@method`` decorator.
389390

390-
.. _section-3:
391+
.. _section-4:
391392

392393
0.2 - 2023-03-13
393394
~~~~~~~~~~~~~~~~
@@ -404,7 +405,7 @@ put more effort into matching and fully implementing them. Stay tuned!
404405
format <https://github.com/snarfed/atproto/commit/63b9873bb1699b6bce54e7a8d3db2fcbd2cfc5ab>`__.
405406
Original format is no longer supported.
406407

407-
.. _section-4:
408+
.. _section-5:
408409

409410
0.1 - 2022-12-13
410411
~~~~~~~~~~~~~~~~

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ where = ['.']
1616

1717
[project]
1818
name = 'lexrpc'
19-
version = '0.5'
19+
version = '0.6'
2020
authors = [
2121
{ name='Ryan Barrett', email='lexrpc@ryanb.org' },
2222
]

0 commit comments

Comments
 (0)