Skip to content

Commit 480da4c

Browse files
author
jakub-zarembinski
committed
3.1.0->3.1.1
1 parent d0e140d commit 480da4c

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Welcome to EOSFactory v3.1.0
1+
# Welcome to EOSFactory v3.1.1
22

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

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
============================
2-
Welcome to EOSFactory v3.1.0
2+
Welcome to EOSFactory v3.1.1
33
============================
44

55
`EOSFactory <http://eosfactory.io/>`_ is a Python-based `EOS <https://eos.io>`_ smart-contract development & testing framework, created by `Tokenika <https://tokenika.io>`_.

docs/ReleaseNotes.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# EOSFactory Release Notes - v3.1.0
1+
# EOSFactory Release Notes - v3.1.1
22

33
## Compatibility
44

5-
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).
5+
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).
66

7-
## New features in v3.1.0
7+
## New features in v3.1.1
88
* Compatibility with eosio.cdt version 1.6.1 that introduces substantial changes in the Smart-Contract API.
99
* Removed methods *build_wast* and *build_abi* from the class *Contract* and from derived classes.
1010
* Removed *logger.hpp* logging facility.

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# The short X.Y version
2727
version = ''
2828
# The full version, including alpha/beta/rc tags
29-
release = '3.1.0'
29+
release = '3.1.1'
3030

3131

3232
# -- General configuration ---------------------------------------------------

docs/tutorials/01.InstallingEOSFactory.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ python3 -m eosfactory.config
128128
In the printout, you'll see a note about the nature of the active package:
129129

130130
```bash
131-
EOSFactory version 3.1.0.
131+
EOSFactory version 3.1.1.
132132
Dependencies:
133133
https://github.com/EOSIO/eos version 1.7.1
134134
https://github.com/EOSIO/eosio.cdt version 1.6.1
@@ -196,7 +196,7 @@ python3 -m eosfactory.config
196196
As a result, you should get data similar to this:
197197
198198
```bash
199-
EOSFactory version 3.1.0.
199+
EOSFactory version 3.1.1.
200200
Dependencies:
201201
https://github.com/EOSIO/eos version 1.7.1
202202
https://github.com/EOSIO/eosio.cdt version 1.6.1

eosfactory/core/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import eosfactory.core.utils as utils
1212

1313

14-
VERSION = "3.1.0"
14+
VERSION = "3.1.1"
1515
EOSIO_VERSION = "1.7.1"
1616
EOSIO_CDT_VERSION = "1.6.1"
1717
PYTHON_VERSION = "3.5 or higher"

0 commit comments

Comments
 (0)