diff --git a/.github/PULL_REQUEST_TEMPLATE/new_release.md b/.github/PULL_REQUEST_TEMPLATE/new_release.md deleted file mode 100644 index 70b2e42d0f..0000000000 --- a/.github/PULL_REQUEST_TEMPLATE/new_release.md +++ /dev/null @@ -1,24 +0,0 @@ -## Release summary - -Version number: [e.g. 1.0.1] - -## Release details - -Describe in short the main changes with the new release. - -## Checklist - -_Put an `x` in the boxes that apply._ - -- [ ] I have read the [CONTRIBUTING](../master/CONTRIBUTING.rst) doc -- [ ] I am making a pull request against the `master` branch (left side), from `develop` -- [ ] Lint and unit tests pass locally -- [ ] I built the documentation and updated it with the latest changes -- [ ] I've added an item in `HISTORY.rst` for this release -- [ ] I bumped the version number in the `aea/__version__.py` file. -- [ ] I bumped the version number in every Docker image of the repo and published it. Also, I built and published them with tag `latest` -- [ ] I have checked that the documentation about the `aea cli` tool works - -## Further comments - -Write here any other comment about the release, if any. diff --git a/.github/PULL_REQUEST_TEMPLATE/pull_request.md b/.github/pull_request_template.md similarity index 59% rename from .github/PULL_REQUEST_TEMPLATE/pull_request.md rename to .github/pull_request_template.md index f29f3f4731..51cdf740a3 100644 --- a/.github/PULL_REQUEST_TEMPLATE/pull_request.md +++ b/.github/pull_request_template.md @@ -30,3 +30,32 @@ _Put an `x` in the boxes that apply._ ## Further comments If this is a relatively large or complex change, kick off the discussion by explaining why you chose the solution you did and what alternatives you considered, etc... + + +DELETE INCLUSIVE THIS AND BELOW FOR STANDARD PR +------ + +## Release summary + +Version number: [e.g. 1.0.1] + +## Release details + +Describe in short the main changes with the new release. + +## Checklist + +_Put an `x` in the boxes that apply._ + +- [ ] I have read the [CONTRIBUTING](../master/CONTRIBUTING.rst) doc +- [ ] I am making a pull request against the `master` branch (left side), from `develop` +- [ ] Lint and unit tests pass locally +- [ ] I built the documentation and updated it with the latest changes +- [ ] I've added an item in `HISTORY.rst` for this release +- [ ] I bumped the version number in the `aea/__version__.py` file. +- [ ] I bumped the version number in every Docker image of the repo and published it. Also, I built and published them with tag `latest` +- [ ] I have checked that the documentation about the `aea cli` tool works + +## Further comments + +Write here any other comment about the release, if any. diff --git a/HISTORY.rst b/HISTORY.rst index a37f70f0dd..30d770be3e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -30,3 +30,9 @@ Release History - Adds first two working skills and fixes gym examples - Adds docs - Multiple additional minor fixes and changes + +0.1.4 (2019-09-20) +------------------- + +- Adds cli functionality to add connections +- Multiple additional minor fixes and changes diff --git a/README.md b/README.md index 8fc7cf65ca..f5421d917f 100644 --- a/README.md +++ b/README.md @@ -3,14 +3,10 @@ A framework for autonomous economic agent (AEA) development ## Get started -First, install the package from [test-pypi](https://test.pypi.org/project/aea/): +First, install the package from [pypi](https://pypi.org/project/aea/): ` -pip install cryptography base58 -` - -` -pip install -i https://test.pypi.org/simple/ aea +pip install aea ` Then, build your agent as described in the [AEA CLI readme](../master/aea/cli/README.md) diff --git a/aea/__version__.py b/aea/__version__.py index 41dd5fe474..11b814de56 100644 --- a/aea/__version__.py +++ b/aea/__version__.py @@ -23,7 +23,7 @@ __title__ = 'aea' __description__ = 'Autonomous Economic Agent framework' __url__ = 'https://github.com/fetchai/agents-aea.git' -__version__ = '0.1.3' +__version__ = '0.1.4' __author__ = 'Fetch.AI Limited' __license__ = 'Apache 2.0' __copyright__ = '2019 Fetch.AI Limited' diff --git a/develop-image/docker-env.sh b/develop-image/docker-env.sh index 19610aee2c..1f4988b44f 100755 --- a/develop-image/docker-env.sh +++ b/develop-image/docker-env.sh @@ -1,5 +1,5 @@ #!/bin/bash -DOCKER_IMAGE_TAG=aea-develop:0.1.3 +DOCKER_IMAGE_TAG=aea-develop:0.1.4 DOCKER_BUILD_CONTEXT_DIR=.. DOCKERFILE=./Dockerfile diff --git a/setup.py b/setup.py index 668719b8d3..ae07bffb87 100644 --- a/setup.py +++ b/setup.py @@ -79,6 +79,7 @@ def get_all_extras() -> Dict: author=about['__author__'], url=about['__url__'], long_description=readme, + long_description_content_type='text/markdown', packages=find_packages(include=["aea*"]), classifiers=[ 'Development Status :: 2 - Pre-Alpha',