Skip to content

Commit

Permalink
Support Elixir 1.14
Browse files Browse the repository at this point in the history
  • Loading branch information
jjcarstens authored and fhunleth committed Sep 8, 2022
1 parent b06b260 commit bcdd4a9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ jobs:
strategy:
matrix:
beam:
- { otp: '25.0.2', elixir: '1.13.4' }
- { otp: '25.0.4', elixir: '1.14.0' }
- { otp: '25.0.4', elixir: '1.13.4' }
os:
- name: Linux
runner: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion lib/jeff/error_checks.ex
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Jeff.ErrorChecks do
@moduledoc false

use Bitwise
import Bitwise

@spec crc(binary()) :: pos_integer()
def crc(data) when is_binary(data) do
Expand Down
2 changes: 1 addition & 1 deletion lib/jeff/reply.ex
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ defmodule Jeff.Reply do
| XRD | 0xB1 | Extended Read Response | APDU and details |
"""

use Bitwise
import Bitwise

alias Jeff.Reply.{
Capabilities,
Expand Down
2 changes: 1 addition & 1 deletion lib/jeff/secure_channel.ex
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Jeff.SecureChannel do
@moduledoc false

use Bitwise
import Bitwise

defstruct [
:enc,
Expand Down

0 comments on commit bcdd4a9

Please sign in to comment.