Skip to content

Commit

Permalink
Bump to v1.2.0 (#108)
Browse files Browse the repository at this point in the history
* Bump to v1.2.0

* Go back to warning
  • Loading branch information
Noarkhh authored Oct 6, 2023
1 parent 27a8513 commit aba01a3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ defmodule MyApp.Mixfile do

defp deps() do
[
{:bundlex, "~> 1.1.1"}
{:bundlex, "~> 1.2.0"}
]
end
end
Expand Down
2 changes: 1 addition & 1 deletion lib/bundlex/toolchain/common/unix.ex
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ defmodule Bundlex.Toolchain.Common.Unix do
|> Enum.zip(objects)
|> Enum.map(fn {source, object} ->
"""
#{compile} -w -c -O2 -g #{compiler_flags} \
#{compile} -Wall -Wextra -c -O2 -g #{compiler_flags} \
-o #{path(object)} #{includes} #{path(source)}
"""
end)
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Bundlex.Mixfile do
use Mix.Project

@version "1.1.1"
@version "1.2.0"
@github_url "https://github.com/membraneframework/bundlex"

def project do
Expand Down

0 comments on commit aba01a3

Please sign in to comment.