This repository was archived by the owner on Aug 12, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +14
-3
lines changed
Expand file tree Collapse file tree 5 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 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
33COMPILER_TAG = v3.2.0
Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66and 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
Original file line number Diff line number Diff line change 11import 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
Original file line number Diff line number Diff line change 161161PROTOCOL_ROMA = 1
162162PROTOCOL_MINERVA = 2
163163PROTOCOL_FORTUNA = 3
164+ PROTOCOL_LIMA = 4
164165# Contracts identifiers
165166PROTOCOL_ABI_VM = {
166167 PROTOCOL_ROMA : {
175176 PROTOCOL_FORTUNA : {
176177 "vm" : 4 ,
177178 "abi" : 1
179+ },
180+ PROTOCOL_LIMA : {
181+ "vm" : 5 ,
182+ "abi" : 1
178183 }
179184}
180185
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " aepp-sdk"
3- version = " 4.2 .0"
3+ version = " 4.3 .0"
44description = " Python SDK to interact with the Æternity blockchain"
55authors = [
66 " Andrea Giacobino <[email protected] >" ,
You can’t perform that action at this time.
0 commit comments