Skip to content

Commit

Permalink
Merge pull request #160 from tokenika/v.3.1.1
Browse files Browse the repository at this point in the history
v3.1.1
  • Loading branch information
jakub-zarembinski authored May 8, 2019
2 parents 816a314 + e7c47a6 commit d15d6ef
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Welcome to EOSFactory v3.1.0
# Welcome to EOSFactory v3.1.1

[EOSFactory](http://eosfactory.io/) is a Python-based [EOS](https://eos.io) smart-contract development & testing framework, created by [Tokenika](https://tokenika.io).

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
============================
Welcome to EOSFactory v3.1.0
Welcome to EOSFactory v3.1.1
============================

`EOSFactory <http://eosfactory.io/>`_ is a Python-based `EOS <https://eos.io>`_ smart-contract development & testing framework, created by `Tokenika <https://tokenika.io>`_.
Expand Down
12 changes: 5 additions & 7 deletions docs/ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
# EOSFactory Release Notes - v3.1.0
# EOSFactory Release Notes - v3.1.1

## Compatibility

EOSFactory [v3.1.0](https://github.com/tokenika/eosfactory/releases/tag/v3.1.0) is compatible with EOS [v1.7.1](https://github.com/EOSIO/eos/releases/tag/v1.7.1) and eosio.cdt [v1.6.1](https://github.com/EOSIO/eosio.cdt/releases/tag/v1.6.1).
EOSFactory [v3.1.1](https://github.com/tokenika/eosfactory/releases/tag/v3.1.1) is compatible with EOS [v1.7.1](https://github.com/EOSIO/eos/releases/tag/v1.7.1) and eosio.cdt [v1.6.1](https://github.com/EOSIO/eosio.cdt/releases/tag/v1.6.1).

## New features in v3.1.0
* Compatibility with eosio.cdt version 1.6.1 that introduces substantial changes in the Smart-Contract API.
* Removed methods *build_wast* and *build_abi* from the class *Contract* and from derived classes.
* Removed *logger.hpp* logging facility.
* Compatibility with [EOSIDE](https://eosfactory.io/eoside/html/index.html).
## New features in v3.1.1
* Gather console output from all actions (PR #155)
* Support for arbitrary folder structure
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = '3.1.0'
release = '3.1.1'


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/01.InstallingEOSFactory.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ python3 -m eosfactory.config
In the printout, you'll see a note about the nature of the active package:

```bash
EOSFactory version 3.1.0.
EOSFactory version 3.1.1.
Dependencies:
https://github.com/EOSIO/eos version 1.7.1
https://github.com/EOSIO/eosio.cdt version 1.6.1
Expand Down Expand Up @@ -196,7 +196,7 @@ python3 -m eosfactory.config
As a result, you should get data similar to this:
```bash
EOSFactory version 3.1.0.
EOSFactory version 3.1.1.
Dependencies:
https://github.com/EOSIO/eos version 1.7.1
https://github.com/EOSIO/eosio.cdt version 1.6.1
Expand Down
2 changes: 1 addition & 1 deletion eosfactory/core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import eosfactory.core.utils as utils


VERSION = "3.1.0"
VERSION = "3.1.1"
EOSIO_VERSION = "1.7.1"
EOSIO_CDT_VERSION = "1.6.1"
PYTHON_VERSION = "3.5 or higher"
Expand Down

0 comments on commit d15d6ef

Please sign in to comment.