Skip to content

Commit 6168e67

Browse files
authored
Updates after org move (#6)
1 parent 52121fe commit 6168e67

File tree

4 files changed

+23
-23
lines changed

4 files changed

+23
-23
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- uses: actions/checkout@v2
18-
- uses: doughsay/setup-elixir@1148b8ff819424a2efa48ff89af3ccc114c1fc39
18+
- uses: actions/setup-elixir@v1.4.2
1919
id: setup
2020
with:
2121
otp-version: ${{ env.OTP_VERSION_SPEC }}
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
# shared steps
3333
- uses: actions/checkout@v2
34-
- uses: doughsay/setup-elixir@1148b8ff819424a2efa48ff89af3ccc114c1fc39
34+
- uses: actions/setup-elixir@v1.4.2
3535
id: setup
3636
with:
3737
otp-version: ${{ env.OTP_VERSION_SPEC }}
@@ -76,7 +76,7 @@ jobs:
7676
steps:
7777
# shared steps
7878
- uses: actions/checkout@v2
79-
- uses: doughsay/setup-elixir@1148b8ff819424a2efa48ff89af3ccc114c1fc39
79+
- uses: actions/setup-elixir@v1.4.2
8080
id: setup
8181
with:
8282
otp-version: ${{ env.OTP_VERSION_SPEC }}
@@ -127,7 +127,7 @@ jobs:
127127
steps:
128128
# shared steps
129129
- uses: actions/checkout@v2
130-
- uses: doughsay/setup-elixir@1148b8ff819424a2efa48ff89af3ccc114c1fc39
130+
- uses: actions/setup-elixir@v1.4.2
131131
id: setup
132132
with:
133133
otp-version: ${{ env.OTP_VERSION_SPEC }}
@@ -176,7 +176,7 @@ jobs:
176176
steps:
177177
# shared steps
178178
- uses: actions/checkout@v2
179-
- uses: doughsay/setup-elixir@1148b8ff819424a2efa48ff89af3ccc114c1fc39
179+
- uses: actions/setup-elixir@v1.4.2
180180
id: setup
181181
with:
182182
otp-version: ${{ env.OTP_VERSION_SPEC }}

LICENSE.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
# MIT License
22

3-
Copyright 2020 Chris Dosé
3+
Copyright © 2020 Nerves Keyboard group
44

5-
Permission is hereby granted, free of charge, to any person obtaining a copy of
6-
this software and associated documentation files (the "Software"), to deal in
7-
the Software without restriction, including without limitation the rights to
8-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9-
the Software, and to permit persons to whom the Software is furnished to do so,
10-
subject to the following conditions:
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
1111

1212
The above copyright notice and this permission notice shall be included in all
1313
copies or substantial portions of the Software.
1414

1515
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17-
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18-
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# IS31FL3733
22

3-
[![CI Status](https://github.com/ElixirSeattle/IS31FL3733/workflows/CI/badge.svg)](https://github.com/ElixirSeattle/IS31FL3733/actions)
4-
[![codecov](https://codecov.io/gh/ElixirSeattle/IS31FL3733/branch/master/graph/badge.svg)](https://codecov.io/gh/ElixirSeattle/IS31FL3733)
3+
[![CI Status](https://github.com/nerves-keyboard/IS31FL3733/workflows/CI/badge.svg)](https://github.com/nerves-keyboard/IS31FL3733/actions)
4+
[![codecov](https://codecov.io/gh/nerves-keyboard/IS31FL3733/branch/main/graph/badge.svg)](https://codecov.io/gh/nerves-keyboard/IS31FL3733)
55
[![Hex.pm Version](https://img.shields.io/hexpm/v/is31fl3733.svg?style=flat)](https://hex.pm/packages/is31fl3733)
66
[![License](https://img.shields.io/hexpm/l/is31fl3733.svg)](LICENSE.md)
77

mix.exs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
defmodule IS31FL3733.MixProject do
22
use Mix.Project
33

4-
@version "0.1.0"
5-
@source_url "https://github.com/ElixirSeattle/IS31FL3733"
4+
@version "0.1.1"
5+
@source_url "https://github.com/nerves-keyboard/IS31FL3733"
66

77
def project do
88
[
@@ -42,8 +42,7 @@ defmodule IS31FL3733.MixProject do
4242

4343
defp dialyzer do
4444
[
45-
plt_core_path: "_build/#{Mix.env()}",
46-
flags: [:unmatched_returns, :error_handling, :underspecs]
45+
plt_core_path: "_build/#{Mix.env()}"
4746
]
4847
end
4948

0 commit comments

Comments
 (0)