Skip to content

Commit 57db01a

Browse files
committed
Bump version to v0.26.0
1 parent 8787154 commit 57db01a

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [0.26.0] - 2023-01-11 <sup>([notes][0.26.0-n])</sup>
4+
5+
- Add `--appconfig` argument to schema registration mix task (#102 @emilianobovetti, @strech)
6+
37
## [0.25.0] - 2023-01-03 <sup>([notes][0.25.0-n])</sup>
48

59
- Add User-Agent header when communicating with Schema Registry (#100 @azeemchauhan, @strech)
@@ -20,6 +24,8 @@
2024

2125
- Add runtime config resolution for Avrora.Client (#92, @strech)
2226

27+
[0.26.0]: https://github.com/Strech/avrora/compare/v0.25.0...v0.26.0
28+
[0.26.0-n]: https://github.com/Strech/avrora/releases/tag/v0.26.0
2329
[0.25.0]: https://github.com/Strech/avrora/compare/v0.24.2...v0.25.0
2430
[0.25.0-n]: https://github.com/Strech/avrora/releases/tag/v0.25.0
2531
[0.24.2]: https://github.com/Strech/avrora/compare/v0.24.1...v0.24.2

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
[v0.23]: https://github.com/Strech/avrora/releases/tag/v0.23.0
2424
[v0.24]: https://github.com/Strech/avrora/releases/tag/v0.24.0
2525
[v0.25]: https://github.com/Strech/avrora/releases/tag/v0.25.0
26+
[v0.26]: https://github.com/Strech/avrora/releases/tag/v0.26.0
2627
[1]: https://avro.apache.org/
2728
[2]: https://www.confluent.io/confluent-schema-registry
2829
[3]: https://docs.confluent.io/current/schema-registry/serializer-formatter.html#wire-format
@@ -436,3 +437,10 @@ $ mix avrora.reg.schema --all
436437
schema `io.confluent.Payment' will be registered
437438
schema `io.confluent.Wrong' will be skipped due to an error `argument error'
438439
```
440+
441+
Additional application config to load additional can be set via `--appconfig` option<sup>[v0.26]</sup>
442+
443+
```console
444+
$ mix avrora.reg.schema --name io.confluent.Payment --appconfig runtime
445+
schema `io.confluent.Payment' will be registered
446+
```

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule Avrora.MixProject do
44
def project do
55
[
66
app: :avrora,
7-
version: "0.25.0",
7+
version: "0.26.0",
88
elixir: "~> 1.6",
99
description: description(),
1010
package: package(),

0 commit comments

Comments
 (0)