diff --git a/README.md b/README.md index b23575ec..bddb519b 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,13 @@ Library test status: ![](https://github.com/ityonemo/zigler/workflows/Elixir%20CI/badge.svg) +## Version 0.11.0 warning + +Several compile-time niceties are broken, such as line and file translation and +there is a compile time warning about multiple function matches. I needed to +release 0.11.0 quickly. Hopefully these will be fixed with the 0.11.1 release +which will include zig bugfixes as well as zigler bugfixes. + ## Installation: Elixir Zigler is [available in Hex](https://hex.pm/packages/zigler), and the package can be installed @@ -11,12 +18,12 @@ by adding `zigler` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:zigler, "~> 0.10.1", runtime: false} + {:zigler, "~> 0.11.0", runtime: false} ] end ``` -Then you should run `mix zig.get` to download Zig 0.10.1 +Then you should run `mix zig.get` to download Zig 0.11.0 ## Installation: Erlang @@ -29,7 +36,7 @@ have difficulty. ```erlang {plugins, [rebar_mix]}. -{deps, [{zigler, "0.10"}]}. +{deps, [{zigler, "0.11"}]}. ```