Skip to content

Commit

Permalink
Bump version to v7.1.0 (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
hanssv authored Feb 2, 2023
1 parent a8f6bca commit 9b66445
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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
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.0.1"}
{"version":"7.1.0"}
```

```
curl http://localhost:3080/api-version
{"api-version":"7.0.1"}
{"api-version":"7.1.0"}
```

```
Expand Down
3 changes: 1 addition & 2 deletions 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.0.1"},
{vsn, "7.1.0"},
{registered, []},
{mod, { aesophia_http_app, []}},
{applications,
Expand All @@ -9,7 +9,6 @@
inets,
eblake2,
aeserialization,
enacl,
jsx,
jesse,
cowboy,
Expand Down
2 changes: 1 addition & 1 deletion apps/aesophia_http/test/aesophia_http_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -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(_) ->
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.0.1
version: 7.1.0
title: Aeternity compiler
termsOfService: 'https://www.aeternity.com/terms/'
contact:
Expand Down
2 changes: 1 addition & 1 deletion rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
Expand Down

0 comments on commit 9b66445

Please sign in to comment.