Skip to content

Commit bf48896

Browse files
committed
Fix bad alias in table spec macro helpers.
1 parent cf65ed3 commit bf48896

File tree

7 files changed

+7
-11
lines changed

7 files changed

+7
-11
lines changed

Diff for: .github/workflows/test-matrix.yml

-3
Original file line numberDiff line numberDiff line change
@@ -139,9 +139,6 @@ jobs:
139139
path: _build
140140
key: cache-${{ env.cache-version }}-os-${{ runner.os }}-${{ steps.beam-versions.outputs.otp-version }}-${{ steps.beam-versions.outputs.elixir-version }}-mix-deps-compile-mix-lock-file-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
141141

142-
- name: Compile mix dependencies
143-
if: steps.mix-deps-compile-cache.outputs.cache-hit != 'true'
144-
run: mix deps.compile
145142
- name: Compile mix dependencies
146143
if: steps.mix-deps-compile-cache.outputs.cache-hit != 'true'
147144
run: mix deps.compile

Diff for: .vscode/settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
"editor.formatOnSave": true,
66
"elixirLS.enableTestLenses": true,
77
"elixirLS.fetchDeps": true,
8-
"elixirLS.mixEnv": "dev"
8+
"elixirLS.mixEnv": "test"
99
}

Diff for: README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -159,22 +159,21 @@ well in advance of release.
159159
<!-- Release Status -->
160160

161161
[release]: https://github.com/christhekeele/matcha/tree/release
162-
[release-suite]: https://github.com/christhekeele/matcha/actions?query=workflow%3A%22Test+Suites%22+branch%3Arelease
162+
[release-suite]: https://github.com/christhekeele/matcha/actions?query=workflow%3A%22Test+Suite%22+branch%3Arelease
163163
[release-suite-badge]: https://img.shields.io/github/actions/workflow/status/christhekeele/matcha/test-suite.yml?branch=release&cacheSeconds=86400&style=flat-square
164164
[release-coverage]: https://coveralls.io/github/christhekeele/matcha?branch=release
165165
[release-coverage-badge]: https://img.shields.io/coverallsCoverage/github/christhekeele/matcha?branch=release&cacheSeconds=86400&style=flat-square
166166

167167
<!-- Latest Status -->
168168

169169
[latest]: https://github.com/christhekeele/matcha/tree/latest
170-
[latest-suite]: https://github.com/christhekeele/matcha/actions?query=workflow%3A%22Test+Suites%22+branch%3Alatest
170+
[latest-suite]: https://github.com/christhekeele/matcha/actions?query=workflow%3A%22Test+Suite%22+branch%3Alatest
171171
[latest-suite-badge]: https://img.shields.io/github/actions/workflow/status/christhekeele/matcha/test-suite.yml?branch=latest&cacheSeconds=86400&style=flat-square
172172
[latest-coverage]: https://coveralls.io/github/christhekeele/matcha?branch=latest
173173
[latest-coverage-badge]: https://img.shields.io/coverallsCoverage/github/christhekeele/matcha?branch=latest&cacheSeconds=86400&style=flat-square
174174

175175
<!-- Other -->
176176

177-
[elixir-version-requirements]: https://hexdocs.pm/elixir/Version.html#module-requirements
178177
[changelog]: https://hexdocs.pm/matcha/changelog.html
179178
[test-matrix]: https://github.com/christhekeele/matcha/actions/workflows/test-matrix.yml
180179
[test-edge]: https://github.com/christhekeele/matcha/actions/workflows/test-edge.yml

Diff for: lib/matcha/table/ets.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ defmodule Matcha.Table.ETS do
3737

3838
Matcha.Table.ETS.Select.unquote(operation)(
3939
unquote(table),
40-
Table.spec(unquote(spec))
40+
Matcha.Table.spec(unquote(spec))
4141
)
4242
end
4343
end

Diff for: lib/matcha/table/mnesia.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ if Matcha.Helpers.application_loaded?(:mnesia) do
8585

8686
Matcha.Table.Mnesia.Select.all(
8787
unquote(table),
88-
Table.spec(unquote(spec)),
88+
Matcha.Table.spec(unquote(spec)),
8989
unquote(opts)
9090
)
9191
end

Diff for: mix.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ defmodule Matcha.MixProject do
165165
{:dialyxir, "~> 1.0", only: @dev_envs, runtime: false},
166166
{:doctor, "~> 0.21", only: @dev_envs, runtime: false},
167167
{:ex_doc, "~> 0.29", only: @dev_envs, runtime: false},
168-
{:excoveralls, "~> 0.14 and >= 0.14.4", only: @dev_envs}
168+
{:excoveralls, "~> 0.18", only: @dev_envs}
169169
]
170170

171171
defp docs,

Diff for: mix.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"earmark_parser": {:hex, :earmark_parser, "1.4.39", "424642f8335b05bb9eb611aa1564c148a8ee35c9c8a8bba6e129d51a3e3c6769", [:mix], [], "hexpm", "06553a88d1f1846da9ef066b87b57c6f605552cfbe40d20bd8d59cc6bde41944"},
1212
"erlex": {:hex, :erlex, "0.2.6", "c7987d15e899c7a2f34f5420d2a2ea0d659682c06ac607572df55a43753aa12e", [:mix], [], "hexpm", "2ed2e25711feb44d52b17d2780eabf998452f6efda104877a3881c2f8c0c0c75"},
1313
"ex_doc": {:hex, :ex_doc, "0.30.9", "d691453495c47434c0f2052b08dd91cc32bc4e1a218f86884563448ee2502dd2", [:mix], [{:earmark_parser, "~> 1.4.31", [hex: :earmark_parser, repo: "hexpm", optional: false]}, {:makeup_elixir, "~> 0.14", [hex: :makeup_elixir, repo: "hexpm", optional: false]}, {:makeup_erlang, "~> 0.1", [hex: :makeup_erlang, repo: "hexpm", optional: false]}], "hexpm", "d7aaaf21e95dc5cddabf89063327e96867d00013963eadf2c6ad135506a8bc10"},
14-
"excoveralls": {:hex, :excoveralls, "0.18.0", "b92497e69465dc51bc37a6422226ee690ab437e4c06877e836f1c18daeb35da9", [:mix], [{:castore, "~> 1.0", [hex: :castore, repo: "hexpm", optional: true]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm", "1109bb911f3cb583401760be49c02cbbd16aed66ea9509fc5479335d284da60b"},
14+
"excoveralls": {:hex, :excoveralls, "0.18.1", "a6f547570c6b24ec13f122a5634833a063aec49218f6fff27de9df693a15588c", [:mix], [{:castore, "~> 1.0", [hex: :castore, repo: "hexpm", optional: true]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm", "d65f79db146bb20399f23046015974de0079668b9abb2f5aac074d078da60b8d"},
1515
"file_system": {:hex, :file_system, "0.2.10", "fb082005a9cd1711c05b5248710f8826b02d7d1784e7c3451f9c1231d4fc162d", [:mix], [], "hexpm", "41195edbfb562a593726eda3b3e8b103a309b733ad25f3d642ba49696bf715dc"},
1616
"jason": {:hex, :jason, "1.4.1", "af1504e35f629ddcdd6addb3513c3853991f694921b1b9368b0bd32beb9f1b63", [:mix], [{:decimal, "~> 1.0 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: true]}], "hexpm", "fbb01ecdfd565b56261302f7e1fcc27c4fb8f32d56eab74db621fc154604a7a1"},
1717
"makeup": {:hex, :makeup, "1.1.1", "fa0bc768698053b2b3869fa8a62616501ff9d11a562f3ce39580d60860c3a55e", [:mix], [{:nimble_parsec, "~> 1.2.2 or ~> 1.3", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm", "5dc62fbdd0de44de194898b6710692490be74baa02d9d108bc29f007783b0b48"},

0 commit comments

Comments
 (0)