diff --git a/CHANGELOG.md b/CHANGELOG.md index cca291f..8e80005 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,10 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Added -- `aci` property to the result of CompileContract with ACI formatted the same way as in aesophia_cli ### Changed ### Removed +## [7.1.0] +### Added +- `aci` property to the result of CompileContract with ACI formatted the same way as in aesophia\_cli + ## [7.0.1] ### Changed - Updated to [Sophia 7.0.1](https://github.com/aeternity/aesophia/blob/master/CHANGELOG.md#701) @@ -139,7 +142,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial HTTP interface: /aci, /compile, /decode-data, /encode-calldata, /version, /api-version, /api - Docker support (aeternity/aesophia_http) -[Unreleased]: https://github.com/aeternity/aesophia_http/compare/v7.0.1...HEAD +[Unreleased]: https://github.com/aeternity/aesophia_http/compare/v7.1.0...HEAD +[7.1.0]: https://github.com/aeternity/aesophia_http/compare/v7.0.1...v7.1.0 [7.0.1]: https://github.com/aeternity/aesophia_http/compare/v7.0.0...v7.0.1 [7.0.0]: https://github.com/aeternity/aesophia_http/compare/v6.1.0...v7.0.0 [6.1.0]: https://github.com/aeternity/aesophia_http/compare/v6.0.2...v6.1.0 diff --git a/README.md b/README.md index c1e36aa..dd721e6 100644 --- a/README.md +++ b/README.md @@ -221,13 +221,13 @@ version and the whole actual API (paste into any [swagger file generator](https: ``` curl http://localhost:3080/version -{"version":"7.0.1"} +{"version":"7.1.0"} ``` ``` curl http://localhost:3080/api-version -{"api-version":"7.0.1"} +{"api-version":"7.1.0"} ``` ``` diff --git a/apps/aesophia_http/src/aesophia_http.app.src b/apps/aesophia_http/src/aesophia_http.app.src index eea4e87..e90adbf 100644 --- a/apps/aesophia_http/src/aesophia_http.app.src +++ b/apps/aesophia_http/src/aesophia_http.app.src @@ -1,6 +1,6 @@ {application, aesophia_http, [{description, "HTTP interface for Sophia compiler"}, - {vsn, "7.0.1"}, + {vsn, "7.1.0"}, {registered, []}, {mod, { aesophia_http_app, []}}, {applications, @@ -9,7 +9,6 @@ inets, eblake2, aeserialization, - enacl, jsx, jesse, cowboy, diff --git a/apps/aesophia_http/test/aesophia_http_SUITE.erl b/apps/aesophia_http/test/aesophia_http_SUITE.erl index 846c763..27f3cbe 100644 --- a/apps/aesophia_http/test/aesophia_http_SUITE.erl +++ b/apps/aesophia_http/test/aesophia_http_SUITE.erl @@ -366,7 +366,7 @@ fate_assembler(_) -> C = <<"cb_+GZGA6CpNW171TSUfk88PoVv7YslUgxRcOJYKFPRxoGkXArWosC4OZ7+RNZEHwA3ADcAGg6CPwEDP/64F37sADcBBwcBAQCWLwIRRNZEHxFpbml0EbgXfuwRbWFpboIvAIU0LjEuMAANEx2r">>, _Res = do_get_fate_assembler(C). --define(API_VERSION, <<"7.0.1">>). +-define(API_VERSION, <<"7.1.0">>). -define(COMPILER_VERSION, <<"7.0.1">>). compiler_version(_) -> diff --git a/config/swagger.yaml b/config/swagger.yaml index ed50273..18d2be2 100644 --- a/config/swagger.yaml +++ b/config/swagger.yaml @@ -1,7 +1,7 @@ swagger: '2.0' info: description: 'This is the [Aeternity](https://www.aeternity.com/) compiler API.' - version: 7.0.1 + version: 7.1.0 title: Aeternity compiler termsOfService: 'https://www.aeternity.com/terms/' contact: diff --git a/rebar.config b/rebar.config index dc806fa..f7eedd3 100644 --- a/rebar.config +++ b/rebar.config @@ -21,7 +21,7 @@ {tag, "2.9.0"}}} ]}. -{relx, [{release, {aesophia_http, "7.0.1"}, [aesophia_http, sasl, aeserialization, enacl]}, +{relx, [{release, {aesophia_http, "7.1.0"}, [aesophia_http, sasl, aeserialization]}, {sys_config, "./config/sys.config"}, {vm_args, "./config/vm.args"},