Skip to content
This repository was archived by the owner on Sep 17, 2024. It is now read-only.

Commit 7b9e242

Browse files
authored
Merge pull request #54 from dbluhm/rc-0.8.0
Prepare 0.8.0 release
2 parents 066331a + d3ad602 commit 7b9e242

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

Diff for: RELEASES.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
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+
115
Version 0.7.1 (2020-01-23)
216
==========================
317

Diff for: setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
""" package aries_staticagent """
22

33
from setuptools import setup, find_packages
4+
from version import VERSION
45

56

67
def 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 <[email protected]>, '
2021
'Sam Curren <[email protected]>',
2122
description='Python Static Agent Library and Examples for Aries',

Diff for: version.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
VERSION = '0.8.0'

0 commit comments

Comments
 (0)