This repository was archived by the owner on Sep 17, 2024. It is now read-only.
File tree 3 files changed +17
-1
lines changed
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
+
1
15
Version 0.7.1 (2020-01-23)
2
16
==========================
3
17
Original file line number Diff line number Diff line change 1
1
""" package aries_staticagent """
2
2
3
3
from setuptools import setup , find_packages
4
+ from version import VERSION
4
5
5
6
6
7
def parse_requirements (filename ):
@@ -15,7 +16,7 @@ def parse_requirements(filename):
15
16
16
17
setup (
17
18
name = 'aries-staticagent' ,
18
- version = '0.7.1' ,
19
+ version = VERSION ,
19
20
author = 'Daniel Bluhm <[email protected] >, '
20
21
21
22
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