From b2251c9a7305b4124e11e5f92f436b96dab2b5bc Mon Sep 17 00:00:00 2001 From: Nicholas Rempel Date: Tue, 16 Jul 2019 14:07:27 -0700 Subject: [PATCH 1/3] Add changelog, fix setup.py, downgrade version Signed-off-by: Nicholas Rempel --- CHANGELOG.md | 40 +++++++++++++++++++++++++++++++++++++ aries_cloudagent/version.py | 2 +- setup.py | 1 + 3 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000000..76f3ed7d37 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,40 @@ +# 0.2.0 +## July 16,2019 + +This is the first PyPI release. The history begins with the transfer of aca-py from [bcgov](https://github.com/bcgov) to [hyperledger](https://github.com/hyperledger). + +- Update von-network related references. [#74](https://github.com/hyperledger/aries-cloudagent-python/pull/74) +- Fixed log_level arg, added validation error logging [#73](https://github.com/hyperledger/aries-cloudagent-python/pull/73) +- fix shell inconsistency [#72](https://github.com/hyperledger/aries-cloudagent-python/pull/72) +- further cleanup to the OpenAPI demo script [#71](https://github.com/hyperledger/aries-cloudagent-python/pull/71) +- Updates to invitation handling and performance test [#68](https://github.com/hyperledger/aries-cloudagent-python/pull/68) +- Api security [#67](https://github.com/hyperledger/aries-cloudagent-python/pull/67) +- Fix line endings on Windows [#66](https://github.com/hyperledger/aries-cloudagent-python/pull/66) +- Fix repository name in badge links [#65](https://github.com/hyperledger/aries-cloudagent-python/pull/65) +- Connection record is_ready refactor [#64](https://github.com/hyperledger/aries-cloudagent-python/pull/64) +- Fix API instructions for cred def id [#58](https://github.com/hyperledger/aries-cloudagent-python/pull/58) +- Updated API demo docs to use alice/faber scripts [#54](https://github.com/hyperledger/aries-cloudagent-python/pull/54) +- Updates to the readme for the demo to add PWD support [#53](https://github.com/hyperledger/aries-cloudagent-python/pull/53) +- Swallow empty input in demo scripts [#51](https://github.com/hyperledger/aries-cloudagent-python/pull/51) +- Set credential_exchange state when created from a cached credential request [#49](https://github.com/hyperledger/aries-cloudagent-python/pull/49) +- Check for readiness instead of activeness in credential admin routes [#46](https://github.com/hyperledger/aries-cloudagent-python/pull/46) +- Demo updates [#43](https://github.com/hyperledger/aries-cloudagent-python/pull/43) +- Misc fixes [#42](https://github.com/hyperledger/aries-cloudagent-python/pull/42) +- Readme updates [#41](https://github.com/hyperledger/aries-cloudagent-python/pull/41) +- Change installed "binary" name to aca-py [#40](https://github.com/hyperledger/aries-cloudagent-python/pull/40) +- Tweak in script to work under Linux; updates to readme for demo [#33](https://github.com/hyperledger/aries-cloudagent-python/pull/33) +- New routing example document, typo corrections [#31](https://github.com/hyperledger/aries-cloudagent-python/pull/31) +- More bad links [#30](https://github.com/hyperledger/aries-cloudagent-python/pull/30) +- Links cleanup for the documentation [#29](https://github.com/hyperledger/aries-cloudagent-python/pull/29) +- Alice-Faber demo update [#28](https://github.com/hyperledger/aries-cloudagent-python/pull/28) +- Deployment Model document [#27](https://github.com/hyperledger/aries-cloudagent-python/pull/27) +- Plantuml source and images for documentation; w/image generator script [#26](https://github.com/hyperledger/aries-cloudagent-python/pull/26) +- Move generated documentation. [#25](https://github.com/hyperledger/aries-cloudagent-python/pull/25) +- Update generated documents [#24](https://github.com/hyperledger/aries-cloudagent-python/pull/24) +- Split application configuration into separate modules and add tests [#23](https://github.com/hyperledger/aries-cloudagent-python/pull/23) +- Updates to the RTD configuration file [#22](https://github.com/hyperledger/aries-cloudagent-python/pull/22) +- Merge DIDDoc support from von_anchor [#21](https://github.com/hyperledger/aries-cloudagent-python/pull/21) +- Adding Prov of BC, Gov of Canada copyright [#19](https://github.com/hyperledger/aries-cloudagent-python/pull/19) +- Update test configuration [#18](https://github.com/hyperledger/aries-cloudagent-python/pull/18) +- CI updates [#17](https://github.com/hyperledger/aries-cloudagent-python/pull/17) +- Transport updates [#15](https://github.com/hyperledger/aries-cloudagent-python/pull/15) diff --git a/aries_cloudagent/version.py b/aries_cloudagent/version.py index 60d08a2c60..79899a23da 100644 --- a/aries_cloudagent/version.py +++ b/aries_cloudagent/version.py @@ -1,3 +1,3 @@ """Library version information.""" -__version__ = "0.10.0" +__version__ = "0.2.0" diff --git a/setup.py b/setup.py index 1f02ba4f94..e3b01546a6 100644 --- a/setup.py +++ b/setup.py @@ -26,6 +26,7 @@ def parse_requirements(filename): long_description_content_type="text/markdown", packages=find_packages(), include_package_data=True, + package_data={"aries_cloudagent": ["requirements.txt"]}, install_requires=parse_requirements("requirements.txt"), python_requires=">=3.6.3", scripts=["bin/aca-py"], From b93cfc8155053142a0a423abe489f19dd93d7583 Mon Sep 17 00:00:00 2001 From: Nicholas Rempel Date: Tue, 16 Jul 2019 14:14:51 -0700 Subject: [PATCH 2/3] Add this PR to changelog Signed-off-by: Nicholas Rempel --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 76f3ed7d37..469b6da113 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,10 @@ # 0.2.0 + ## July 16,2019 This is the first PyPI release. The history begins with the transfer of aca-py from [bcgov](https://github.com/bcgov) to [hyperledger](https://github.com/hyperledger). +- Prepare for version 0.2.0 release [#77](https://github.com/hyperledger/aries-cloudagent-python/pull/77) - Update von-network related references. [#74](https://github.com/hyperledger/aries-cloudagent-python/pull/74) - Fixed log_level arg, added validation error logging [#73](https://github.com/hyperledger/aries-cloudagent-python/pull/73) - fix shell inconsistency [#72](https://github.com/hyperledger/aries-cloudagent-python/pull/72) From ad2ba5eac977158782cf9135193438e8b595e941 Mon Sep 17 00:00:00 2001 From: Nicholas Rempel Date: Tue, 16 Jul 2019 14:27:52 -0700 Subject: [PATCH 3/3] Add more information to CONTRIBUTING.md Signed-off-by: Nicholas Rempel --- CONTRIBUTING.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a3c02fb8b3..dfa714d699 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,10 +1,12 @@ ## How to contribute -Government employees, public and members of the private sector are encouraged to contribute to the repository by **forking and submitting a pull request**. +You are encouraged to contribute to the repository by **forking and submitting a pull request**. + +For significant changes, please open an issue first to discuss the proposed changes to avoid re-work. (If you are new to GitHub, you might start with a [basic tutorial](https://help.github.com/articles/set-up-git) and check out a more detailed guide to [pull requests](https://help.github.com/articles/using-pull-requests/).) -Pull requests will be evaluated by the repository guardians on a schedule and if deemed beneficial will be committed to the master. +Pull requests will be evaluated by the repository guardians on a schedule and if deemed beneficial will be committed to the master. Pull requests should have a descriptive name and include an summary of all changes made in the pull request description. If you would like to propose a significant change, please open an issue first to discuss the work with the community.