Skip to content

Commit 9cd3931

Browse files
authored
Bump version to v7.1.1 (#117)
1 parent 0f44b2c commit 9cd3931

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
### Changed
1010
### Removed
1111

12+
## [7.1.1]
13+
### Changed
14+
- Fix a dependecy issue stopping `compile` endpoint from working properly
15+
1216
## [7.1.0]
1317
### Added
1418
- `aci` property to the result of CompileContract with ACI formatted the same way as in aesophia\_cli
@@ -142,7 +146,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
142146
- Initial HTTP interface: /aci, /compile, /decode-data, /encode-calldata, /version, /api-version, /api
143147
- Docker support (aeternity/aesophia_http)
144148

145-
[Unreleased]: https://github.com/aeternity/aesophia_http/compare/v7.1.0...HEAD
149+
[Unreleased]: https://github.com/aeternity/aesophia_http/compare/v7.1.1...HEAD
150+
[7.1.0]: https://github.com/aeternity/aesophia_http/compare/v7.1.0...v7.1.1
146151
[7.1.0]: https://github.com/aeternity/aesophia_http/compare/v7.0.1...v7.1.0
147152
[7.0.1]: https://github.com/aeternity/aesophia_http/compare/v7.0.0...v7.0.1
148153
[7.0.0]: https://github.com/aeternity/aesophia_http/compare/v6.1.0...v7.0.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.0.1"}
225225
```
226226

227227
```
228228
curl http://localhost:3080/api-version
229229
230-
{"api-version":"7.1.0"}
230+
{"api-version":"7.1.1"}
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.1.0"},
3+
{vsn, "7.1.1"},
44
{registered, []},
55
{mod, { aesophia_http_app, []}},
66
{applications,

apps/aesophia_http/test/aesophia_http_SUITE.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ fate_assembler(_) ->
366366
C = <<"cb_+GZGA6CpNW171TSUfk88PoVv7YslUgxRcOJYKFPRxoGkXArWosC4OZ7+RNZEHwA3ADcAGg6CPwEDP/64F37sADcBBwcBAQCWLwIRRNZEHxFpbml0EbgXfuwRbWFpboIvAIU0LjEuMAANEx2r">>,
367367
_Res = do_get_fate_assembler(C).
368368

369-
-define(API_VERSION, <<"7.1.0">>).
369+
-define(API_VERSION, <<"7.1.1">>).
370370
-define(COMPILER_VERSION, <<"7.0.1">>).
371371

372372
compiler_version(_) ->

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.1.0
4+
version: 7.1.1
55
title: Aeternity compiler
66
termsOfService: 'https://www.aeternity.com/terms/'
77
contact:

rebar.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
{tag, "2.9.0"}}}
2222
]}.
2323

24-
{relx, [{release, {aesophia_http, "7.1.0"}, [aesophia_http, sasl, aeserialization]},
24+
{relx, [{release, {aesophia_http, "7.1.1"}, [aesophia_http, sasl, aeserialization]},
2525

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

0 commit comments

Comments
 (0)