-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Align to OTP 24 #1
base: master
Are you sure you want to change the base?
Conversation
Is it possible to get this change merged? Working through some learning materials and this is a blocker for a few people. |
I've run into what appears to be this issue with an Udemy Elixir course using egd, on the latest OTP. |
Im getting this issue aswell can this be merged? |
Reinstall Elixir v1.17 with Erlang/OTP 26. |
Fix below compile-time warning. The recommended erlang:crc32/1 was introduced in Erlang/OTP R12. egd_png.erl:102:11: zlib:crc32/2 is deprecated and will be removed in OTP 27; use erlang:crc32/1 instead
Any progress on merging that? |
Looks like this repository might be abandoned? any ideas of how to preceded with such a case? |
I am currently using the forked version from @KornelH who applied the change there. Maybe there is someone from erlang community who can proceed with this but I am new here 😓 |
Documentation provider is changed to ex_doc [1] that required to: - add a missing spec line to fix an ex_doc error, and - convert erl_docgen [2] style XML documents to Markdown. [1] https://hexdocs.pm/rebar3_ex_doc/ [2] https://www.erlang.org/docs/26/man/erl_docgen_app.html#
Fix below compile-time warning. The recommended erlang:crc32/1 was introduced in Erlang/OTP R12.