-
Notifications
You must be signed in to change notification settings - Fork 0
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
dependency update (& remove happy_with) #13
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, future CTO!
@@ -36,14 +36,13 @@ defmodule Avrogen.MixProject do | |||
defp deps do | |||
[ | |||
{:accessible, "~> 0.3"}, | |||
{:credo, "~> 1.7", only: [:dev, :test], runtime: false}, | |||
{:credo, "== 1.7.1", only: [:dev, :test], runtime: false}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was to avoid a big refactor to deal with:
┃ [R] ↗ Predicate function names should not start with 'is', and should end in a
┃ question mark.
┃ lib/avrogen/types.ex:50:7 #(Avrogen.Types.is_primitive?)
We can do it one day, but not now
@@ -16,8 +16,8 @@ jobs: | |||
steps: | |||
- uses: erlef/setup-beam@v1 | |||
with: | |||
elixir-version: 1.15 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What about using a matrix to test latest and older versions?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if you know how to do it, that could be worthwhile in future
Removes the
happy_with
library -- there were no usages that couldn't have been acase
or a regularwith
, and the library triggers compile warnings on OTP26+: