Skip to content

Commit 03072d7

Browse files
authored
Prepare v7.4.0 (#124)
1 parent edd95c5 commit 03072d7

File tree

7 files changed

+19
-12
lines changed

7 files changed

+19
-12
lines changed

CHANGELOG.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88
### Added
9+
### Changed
10+
### Removed
11+
12+
## [7.4.0]
13+
### Added
914
- GenerateACI accepts contract interface again
1015
### Changed
16+
- Updated to [Sophia 7.2.1](https://github.com/aeternity/aesophia/blob/master/CHANGELOG.md#721)
1117
- GenerateACI returns ACI formatted the same way as in aesophia\_cli
12-
### Removed
18+
- Increased `idle_timeout` to 10 minutes to allow slow compilations to succeed
1319

1420
## [7.3.0]
1521
### Changed
@@ -156,8 +162,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
156162
- Initial HTTP interface: /aci, /compile, /decode-data, /encode-calldata, /version, /api-version, /api
157163
- Docker support (aeternity/aesophia_http)
158164

159-
[Unreleased]: https://github.com/aeternity/aesophia_http/compare/v7.3.0...HEAD
160-
[7.2.0]: https://github.com/aeternity/aesophia_http/compare/v7.2.0...v7.3.0
165+
[Unreleased]: https://github.com/aeternity/aesophia_http/compare/v7.4.0...HEAD
166+
[7.4.0]: https://github.com/aeternity/aesophia_http/compare/v7.3.0...v7.4.0
167+
[7.3.0]: https://github.com/aeternity/aesophia_http/compare/v7.2.0...v7.3.0
161168
[7.2.0]: https://github.com/aeternity/aesophia_http/compare/v7.1.1...v7.2.0
162169
[7.1.1]: https://github.com/aeternity/aesophia_http/compare/v7.1.0...v7.1.1
163170
[7.1.0]: https://github.com/aeternity/aesophia_http/compare/v7.0.1...v7.1.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,13 +221,13 @@ version and the whole actual API (paste into any [swagger file generator](https:
221221
```
222222
curl http://localhost:3080/version
223223
224-
{"version":"7.1.0"}
224+
{"version":"7.2.1"}
225225
```
226226

227227
```
228228
curl http://localhost:3080/api-version
229229
230-
{"api-version":"7.2.0"}
230+
{"api-version":"7.3.0"}
231231
```
232232

233233
```

apps/aesophia_http/src/aesophia_http.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application, aesophia_http,
22
[{description, "HTTP interface for Sophia compiler"},
3-
{vsn, "7.3.0"},
3+
{vsn, "7.4.0"},
44
{registered, []},
55
{mod, { aesophia_http_app, []}},
66
{applications,

apps/aesophia_http/test/aesophia_http_SUITE.erl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -362,8 +362,8 @@ fate_assembler(_) ->
362362
C = <<"cb_+GZGA6CpNW171TSUfk88PoVv7YslUgxRcOJYKFPRxoGkXArWosC4OZ7+RNZEHwA3ADcAGg6CPwEDP/64F37sADcBBwcBAQCWLwIRRNZEHxFpbml0EbgXfuwRbWFpboIvAIU0LjEuMAANEx2r">>,
363363
_Res = do_get_fate_assembler(C).
364364

365-
-define(API_VERSION, <<"7.2.0">>).
366-
-define(COMPILER_VERSION, <<"7.1.0">>).
365+
-define(API_VERSION, <<"7.3.0">>).
366+
-define(COMPILER_VERSION, <<"7.2.1">>).
367367

368368
compiler_version(_) ->
369369
F = fun({ExpVer, CB}) ->

config/swagger.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
swagger: '2.0'
22
info:
33
description: 'This is the [Aeternity](https://www.aeternity.com/) compiler API.'
4-
version: 7.2.0
4+
version: 7.3.0
55
title: Aeternity compiler
66
termsOfService: 'https://www.aeternity.com/terms/'
77
contact:

rebar.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
{aebytecode, {git, "https://github.com/aeternity/aebytecode.git",
1212
{tag, "v3.1.1"}}},
1313
{aesophia, {git, "https://github.com/aeternity/aesophia.git",
14-
{tag, "v7.1.0"}}},
14+
{tag, "v7.2.1"}}},
1515
{eblake2, "1.0.0"},
1616
{jsx, {git, "https://github.com/talentdeficit/jsx.git",
1717
{tag, "v2.11.0"}}},
@@ -21,7 +21,7 @@
2121
{tag, "2.9.0"}}}
2222
]}.
2323

24-
{relx, [{release, {aesophia_http, "7.3.0"}, [aesophia_http, sasl, aeserialization]},
24+
{relx, [{release, {aesophia_http, "7.4.0"}, [aesophia_http, sasl, aeserialization]},
2525

2626
{sys_config, "./config/sys.config"},
2727
{vm_args, "./config/vm.args"},

rebar.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
0},
1010
{<<"aesophia">>,
1111
{git,"https://github.com/aeternity/aesophia.git",
12-
{ref,"311bf495053ee1b2360e776f1989060c525d221b"}},
12+
{ref,"43c8328615ae3752c1e80ea74a9dbade8123e655"}},
1313
0},
1414
{<<"base58">>,
1515
{git,"https://github.com/aeternity/erl-base58.git",

0 commit comments

Comments
 (0)