This repository was archived by the owner on Sep 17, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +17
-1
lines changed
Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 1+ Version 0.8.0 (2020-09-21)
2+ ==========================
3+
4+ - Various doc and improvements as a result of static analysis and other code
5+ quality checkers
6+ - Streamlined examples to more clearly demonstrate library
7+ - Rework "replies" concept into "sessions".
8+ - Add Keys and Target for encapsulating connection information. Simplifies
9+ ` StaticConnection ` by delegating connection info tracking to these classes.
10+ - Add ` preprocess ` decorator and specializations for validation and MTC
11+ decorators.
12+ - Update types in examples to use didcomm.org message types.
13+ - Use didcomm.org forward message type.
14+
115Version 0.7.1 (2020-01-23)
216==========================
317
Original file line number Diff line number Diff line change 11""" package aries_staticagent """
22
33from setuptools import setup , find_packages
4+ from version import VERSION
45
56
67def parse_requirements (filename ):
@@ -15,7 +16,7 @@ def parse_requirements(filename):
1516
1617 setup (
1718 name = 'aries-staticagent' ,
18- version = '0.7.1' ,
19+ version = VERSION ,
1920 author = 'Daniel Bluhm <daniel.bluhm@sovrin.org>, '
2021 'Sam Curren <sam@sovrin.org>' ,
2122 description = 'Python Static Agent Library and Examples for Aries' ,
Original file line number Diff line number Diff line change 1+ VERSION = '0.8.0'
You can’t perform that action at this time.
0 commit comments