Skip to content

Commit

Permalink
adds compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ityonemo committed Nov 7, 2023
1 parent f739947 commit 74fb5ad
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand All @@ -29,7 +36,7 @@ have difficulty.
```erlang
{plugins, [rebar_mix]}.

{deps, [{zigler, "0.10"}]}.
{deps, [{zigler, "0.11"}]}.

```

Expand Down

0 comments on commit 74fb5ad

Please sign in to comment.