Skip to content
This repository was archived by the owner on Aug 12, 2024. It is now read-only.

Commit e20db0a

Browse files
authored
Merge pull request #228 from aeternity/release/4.3.0-rc1
Release/4.3.0 rc1
2 parents fc7b47a + f54a45a commit e20db0a

File tree

5 files changed

+14
-3
lines changed

5 files changed

+14
-3
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# this is used by docker-compose.yml to for the node image tag
2-
NODE_TAG=v3.3.0
2+
NODE_TAG=v5.0.0-rc.1
33
COMPILER_TAG=v3.2.0

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

88

9+
## [4.3.0](https://github.com/aeternity/aepp-sdk-python/releases/tag/4.3.0) ([compare](https://github.com/aeternity/aepp-sdk-python/compare/4.2.0...4.3.0)) - 2019-08-29
10+
11+
### Features
12+
- feat: add preliminary support for lima (#227) ([a96bb98](https://github.com/aeternity/aepp-sdk-python/commit/a96bb98a4c3c4e5b4789d9fe08d6ee07ac5bdb9f)).
13+
14+
915
## [4.2.0](https://github.com/aeternity/aepp-sdk-python/releases/tag/4.2.0) ([compare](https://github.com/aeternity/aepp-sdk-python/compare/4.0.0...4.2.0)) - 2019-08-15
1016

1117
### Bug Fixes

aeternity/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import pkg_resources
22

3-
__node_compatibility__ = (">=3.0.1", "<5.0.0")
3+
__node_compatibility__ = (">=3.0.1", "<=5.0.0-rc.1")
44
__compiler_compatibility__ = (">=3.1.0", "<4.0.0")
55

66

aeternity/identifiers.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@
161161
PROTOCOL_ROMA = 1
162162
PROTOCOL_MINERVA = 2
163163
PROTOCOL_FORTUNA = 3
164+
PROTOCOL_LIMA = 4
164165
# Contracts identifiers
165166
PROTOCOL_ABI_VM = {
166167
PROTOCOL_ROMA: {
@@ -175,6 +176,10 @@
175176
PROTOCOL_FORTUNA: {
176177
"vm": 4,
177178
"abi": 1
179+
},
180+
PROTOCOL_LIMA: {
181+
"vm": 5,
182+
"abi": 1
178183
}
179184
}
180185

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "aepp-sdk"
3-
version = "4.2.0"
3+
version = "4.3.0"
44
description = "Python SDK to interact with the Æternity blockchain"
55
authors = [
66
"Andrea Giacobino <[email protected]>",

0 commit comments

Comments
 (0)