Skip to content

Commit

Permalink
Prepare release v7.6.1 (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
hanssv authored Jan 24, 2024
1 parent 151db48 commit 5ee8768
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 15 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
### Removed

## [7.6.1]
### Changed
- Updated to [Sophia 7.4.1](https://github.com/aeternity/aesophia/blob/master/CHANGELOG.md#741)
- Updated `aeserialization` to [v1.1.0](https://github.com/aeternity/aeserialization/releases/tag/v1.1.0)
and `aebytecode` to [v3.4.0](https://github.com/aeternity/aebytecode/releases/tag/v3.4.0)

## [7.6.0]
### Changed
- Updated to [Sophia 7.4.0](https://github.com/aeternity/aesophia/blob/master/CHANGELOG.md#740)
Expand Down Expand Up @@ -171,7 +177,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.6.0...HEAD
[Unreleased]: https://github.com/aeternity/aesophia_http/compare/v7.6.1...HEAD
[7.6.1]: https://github.com/aeternity/aesophia_http/compare/v7.6.0...v7.6.1
[7.6.0]: https://github.com/aeternity/aesophia_http/compare/v7.5.0...v7.6.0
[7.5.0]: https://github.com/aeternity/aesophia_http/compare/v7.4.0...v7.5.0
[7.4.0]: https://github.com/aeternity/aesophia_http/compare/v7.3.0...v7.4.0
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,13 +221,13 @@ version and the whole actual API (paste into any [swagger file generator](https:
```
curl http://localhost:3080/version
{"version":"7.4.0"}
{"version":"7.4.1"}
```

```
curl http://localhost:3080/api-version
{"api-version":"7.6.0"}
{"api-version":"7.6.1"}
```

```
Expand Down
2 changes: 1 addition & 1 deletion apps/aesophia_http/src/aesophia_http.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, aesophia_http,
[{description, "HTTP interface for Sophia compiler"},
{vsn, "7.6.0"},
{vsn, "7.6.1"},
{registered, []},
{mod, { aesophia_http_app, []}},
{applications,
Expand Down
4 changes: 2 additions & 2 deletions apps/aesophia_http/test/aesophia_http_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -362,8 +362,8 @@ fate_assembler(_) ->
C = <<"cb_+GZGA6CpNW171TSUfk88PoVv7YslUgxRcOJYKFPRxoGkXArWosC4OZ7+RNZEHwA3ADcAGg6CPwEDP/64F37sADcBBwcBAQCWLwIRRNZEHxFpbml0EbgXfuwRbWFpboIvAIU0LjEuMAANEx2r">>,
_Res = do_get_fate_assembler(C).

-define(API_VERSION, <<"7.6.0">>).
-define(COMPILER_VERSION, <<"7.4.0">>).
-define(API_VERSION, <<"7.6.1">>).
-define(COMPILER_VERSION, <<"7.4.1">>).

compiler_version(_) ->
F = fun({ExpVer, CB}) ->
Expand Down
2 changes: 1 addition & 1 deletion config/swagger.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
swagger: '2.0'
info:
description: 'This is the [Aeternity](https://www.aeternity.com/) compiler API.'
version: 7.6.0
version: 7.6.1
title: Aeternity compiler
termsOfService: 'https://www.aeternity.com/terms/'
contact:
Expand Down
8 changes: 4 additions & 4 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
{erl_opts, [debug_info]}.
{deps, [
{aeserialization, {git, "https://github.com/aeternity/aeserialization.git",
{ref, "eb68fe3"}}},
{tag, "v1.1.0"}}},
{aebytecode, {git, "https://github.com/aeternity/aebytecode.git",
{tag, "v3.1.1"}}},
{tag, "v3.4.0"}}},
{aesophia, {git, "https://github.com/aeternity/aesophia.git",
{tag, "v7.4.0"}}},
{tag, "v7.4.1"}}},
{eblake2, "1.0.0"},
{jsx, {git, "https://github.com/talentdeficit/jsx.git",
{tag, "v2.11.0"}}},
Expand All @@ -21,7 +21,7 @@
{tag, "2.9.0"}}}
]}.

{relx, [{release, {aesophia_http, "7.6.0"}, [aesophia_http, sasl, aeserialization]},
{relx, [{release, {aesophia_http, "7.6.1"}, [aesophia_http, sasl, aeserialization]},

{sys_config, "./config/sys.config"},
{vm_args, "./config/vm.args"},
Expand Down
8 changes: 4 additions & 4 deletions rebar.lock
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{"1.2.0",
[{<<"aebytecode">>,
{git,"https://github.com/aeternity/aebytecode.git",
{ref,"8269dbd71e9011921c60141636f1baa270a0e784"}},
{ref,"009e0361922037f978f9c0ef357d4d1be8559928"}},
0},
{<<"aeserialization">>,
{git,"https://github.com/aeternity/aeserialization.git",
{ref,"eb68fe331bd476910394966b7f5ede7a74d37e35"}},
{ref,"2488ff3978f63d4cd9bcf864c6fcd6916cd3f498"}},
0},
{<<"aesophia">>,
{git,"https://github.com/aeternity/aesophia.git",
{ref,"33229c35131516e6f91ada1b74ee1505eb94a731"}},
{ref,"dbeb792ca524efec3a62449d3303a4eedf414181"}},
0},
{<<"base58">>,
{git,"https://github.com/aeternity/erl-base58.git",
Expand All @@ -26,7 +26,7 @@
{<<"eblake2">>,{pkg,<<"eblake2">>,<<"1.0.0">>},0},
{<<"enacl">>,
{git,"https://github.com/aeternity/enacl.git",
{ref,"793ddb502f7fe081302e1c42227dca70b09f8e17"}},
{ref,"67fceef42c0d055570f2e67b571f8d1f8de2f204"}},
1},
{<<"getopt">>,{pkg,<<"getopt">>,<<"1.0.1">>},1},
{<<"jesse">>,
Expand Down

0 comments on commit 5ee8768

Please sign in to comment.