Skip to content

Commit 458c29e

Browse files
committed
chore: upgrade deps to prep for 0.3.0 release
1 parent f4a21b3 commit 458c29e

File tree

5 files changed

+35
-19
lines changed

5 files changed

+35
-19
lines changed

scripts/keri/cf/keria.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"dt": "2025-01-03T16:08:30.123456+00:00",
3+
"keria": {
4+
"dt": "2025-01-03T16:08:30.123457+00:00",
5+
"curls": ["http://127.0.0.1:3902/"]
6+
},
7+
"iurls": [
8+
"http://127.0.0.1:5642/oobi/BBilc4-L3tFUnfM_wJr4S4OJanAv_VmF_dJNN6vkf2Ha/controller?name=Wan&tag=witness",
9+
"http://127.0.0.1:5643/oobi/BLskRTInXnMxWaGqcpSyMgo0nYbalW99cGZESrz3zapM/controller?name=Wil&tag=witness",
10+
"http://127.0.0.1:5644/oobi/BIKKuvBwpmDVA4Ds-EpL5bt9OqPzWPja2LigFYZN2YfX/controller?name=Wes&tag=witness"
11+
],
12+
"tocks": {
13+
"initer": 0.0,
14+
"escrower": 1.0
15+
}
16+
}

scripts/keri/cf/main/keria.json

Whitespace-only changes.

setup.py

+17-17
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,11 @@
3434

3535
setup(
3636
name='keria',
37-
version='0.2.0-dev6', # also change in src/keria/__init__.py
37+
version='0.3.0', # also change in src/keria/__init__.py
3838
license='Apache Software License 2.0',
3939
description='KERIA: KERI Agent in the cloud',
40-
long_description="KERIA: KERI Agent in the cloud.",
40+
long_description=open("README.md").read(),
41+
long_description_content_type='text/markdown',
4142
author='Philip S. Feairheller',
4243
author_email='[email protected]',
4344
url='https://github.com/WebOfTrust/keria',
@@ -64,34 +65,33 @@
6465
'Topic :: Utilities',
6566
],
6667
project_urls={
68+
'Documentation': 'https://weboftrust.github.io/keridoc',
6769
'Issue Tracker': 'https://github.com/WebOfTrust/keria/issues',
70+
'Source': 'https://github.com/WebOfTrust/keria/issues',
6871
},
6972
keywords=[
7073
"secure attribution",
7174
"authentic data",
7275
"discovery",
73-
"resolver",
74-
# eg: 'keyword1', 'keyword2', 'keyword3',
76+
"resolver"
7577
],
7678
python_requires='>=3.12.2',
7779
install_requires=[
78-
'hio>=0.6.14',
79-
'keri==1.2.0.dev13',
80-
'mnemonic>=0.21',
81-
'multicommand>=1.0.0',
82-
'falcon>=3.1.3',
83-
'http_sfv>=0.9.8',
84-
'dataclasses_json>=0.5.7',
85-
'apispec>=6.6.0',
80+
'hio==0.6.14',
81+
'keri==1.2.2',
82+
'mnemonic==0.21',
83+
'multicommand==1.0.0',
84+
'falcon==4.0.2',
85+
'http_sfv==0.9.9',
86+
'dataclasses_json==0.6.7',
87+
'apispec==6.8.1',
8688
],
8789
extras_require={
88-
# eg:
89-
# 'rst': ['docutils>=0.11'],
90-
# ':python_version=="2.6"': ['argparse'],
90+
'test': ['pytest', 'coverage']
9191
},
9292
tests_require=[
93-
'coverage>=5.5',
94-
'pytest>=6.2.4',
93+
'coverage>=7.6.10',
94+
'pytest>=8.3.4',
9595
],
9696
setup_requires=[
9797
],

src/keria/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
main package
44
"""
55

6-
__version__ = '0.2.0-dev6' # also change in setup.py
6+
__version__ = '0.3.0' # also change in setup.py
77

src/keria/app/agenting.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1090,7 +1090,7 @@ def on_get(req, rep):
10901090
pre = req.params.get("pre")
10911091
preb = pre.encode("utf-8")
10921092
events = []
1093-
for fn, dig in agent.hby.db.getFelItemPreIter(preb, fn=0):
1093+
for _, fn, dig in agent.hby.db.getFelItemPreIter(preb, fn=0):
10941094
if not (raw := agent.hby.db.cloneEvtMsg(pre=preb, fn=fn, dig=dig)):
10951095
raise falcon.HTTPInternalServerError(f"Missing event for dig={dig}.")
10961096

0 commit comments

Comments
 (0)