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

Commit

Permalink
Merge pull request #54 from dbluhm/rc-0.8.0
Browse files Browse the repository at this point in the history
Prepare 0.8.0 release
  • Loading branch information
dbluhm authored Sep 22, 2020
2 parents 066331a + d3ad602 commit 7b9e242
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
14 changes: 14 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
Version 0.8.0 (2020-09-21)
==========================

- Various doc and improvements as a result of static analysis and other code
quality checkers
- Streamlined examples to more clearly demonstrate library
- Rework "replies" concept into "sessions".
- Add Keys and Target for encapsulating connection information. Simplifies
`StaticConnection` by delegating connection info tracking to these classes.
- Add `preprocess` decorator and specializations for validation and MTC
decorators.
- Update types in examples to use didcomm.org message types.
- Use didcomm.org forward message type.

Version 0.7.1 (2020-01-23)
==========================

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
""" package aries_staticagent """

from setuptools import setup, find_packages
from version import VERSION


def parse_requirements(filename):
Expand All @@ -15,7 +16,7 @@ def parse_requirements(filename):

setup(
name='aries-staticagent',
version='0.7.1',
version=VERSION,
author='Daniel Bluhm <[email protected]>, '
'Sam Curren <[email protected]>',
description='Python Static Agent Library and Examples for Aries',
Expand Down
1 change: 1 addition & 0 deletions version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VERSION = '0.8.0'

0 comments on commit 7b9e242

Please sign in to comment.