Skip to content

Commit

Permalink
1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ahamez committed Jan 17, 2021
1 parent 0dfd686 commit 7c9ecba
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
* x.x.x
* 1.3.0
- Allow namespaces through protox.generate (thanks to https://github.com/sdrew)
- Expand output path when generating files
- More thorough testing of code generation

* 1.2.4
- Fix warning when compiling generated code (thanks to https://github.com/xinz)
Expand Down Expand Up @@ -45,7 +46,7 @@
- Raise RequiredFieldsError when encoding or decoding a Protobuf 2 message
with unset required fields (that is, that have the value `nil`)
- Raise IllegalTagError when decoding a message with a tag set to 0
- +40% speedup & -30% memory consumption when decoding thanks to macro
- +40% speedup & -30% memory consumption when decoding thanks to macros
- Fix missing encoding of unknown fields when a message hadn't any field

* 0.22.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Add `:protox` to your list of dependencies in `mix.exs`:

```elixir
def deps do
[{:protox, "~> 1.2"}]
[{:protox, "~> 1.3"}]
end
```

Expand Down
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 Protox.Mixfile do
def project do
[
app: :protox,
version: "1.2.4",
version: "1.3.0",
elixir: "~> 1.7",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
Expand Down

0 comments on commit 7c9ecba

Please sign in to comment.