Skip to content

Commit

Permalink
Merge pull request #101 from fetchai/feat/bump
Browse files Browse the repository at this point in the history
Feat/bump
  • Loading branch information
DavidMinarsch authored Sep 20, 2019
2 parents ce72b7c + fa28338 commit a0c05fa
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 32 deletions.
24 changes: 0 additions & 24 deletions .github/PULL_REQUEST_TEMPLATE/new_release.md

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -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.
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion aea/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
2 changes: 1 addition & 1 deletion develop-image/docker-env.sh
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit a0c05fa

Please sign in to comment.