Skip to content

Commit

Permalink
Bump version to v0.26.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Strech committed Jan 11, 2023
1 parent 8787154 commit 57db01a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [0.26.0] - 2023-01-11 <sup>([notes][0.26.0-n])</sup>

- Add `--appconfig` argument to schema registration mix task (#102 @emilianobovetti, @strech)

## [0.25.0] - 2023-01-03 <sup>([notes][0.25.0-n])</sup>

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

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

[0.26.0]: https://github.com/Strech/avrora/compare/v0.25.0...v0.26.0
[0.26.0-n]: https://github.com/Strech/avrora/releases/tag/v0.26.0
[0.25.0]: https://github.com/Strech/avrora/compare/v0.24.2...v0.25.0
[0.25.0-n]: https://github.com/Strech/avrora/releases/tag/v0.25.0
[0.24.2]: https://github.com/Strech/avrora/compare/v0.24.1...v0.24.2
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
[v0.23]: https://github.com/Strech/avrora/releases/tag/v0.23.0
[v0.24]: https://github.com/Strech/avrora/releases/tag/v0.24.0
[v0.25]: https://github.com/Strech/avrora/releases/tag/v0.25.0
[v0.26]: https://github.com/Strech/avrora/releases/tag/v0.26.0
[1]: https://avro.apache.org/
[2]: https://www.confluent.io/confluent-schema-registry
[3]: https://docs.confluent.io/current/schema-registry/serializer-formatter.html#wire-format
Expand Down Expand Up @@ -436,3 +437,10 @@ $ mix avrora.reg.schema --all
schema `io.confluent.Payment' will be registered
schema `io.confluent.Wrong' will be skipped due to an error `argument error'
```

Additional application config to load additional can be set via `--appconfig` option<sup>[v0.26]</sup>

```console
$ mix avrora.reg.schema --name io.confluent.Payment --appconfig runtime
schema `io.confluent.Payment' will be registered
```
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule Avrora.MixProject do
def project do
[
app: :avrora,
version: "0.25.0",
version: "0.26.0",
elixir: "~> 1.6",
description: description(),
package: package(),
Expand Down

0 comments on commit 57db01a

Please sign in to comment.