File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## v0.10.2 (2023-10-09)
9
+
10
+ ### Fixes
11
+ - Fix regression introduced in v0.10.1 which made Kaffy ignore all admin modules.
12
+
8
13
## v0.10.1 (2023-10-09)
9
14
10
15
### Fixes
Original file line number Diff line number Diff line change @@ -432,12 +432,8 @@ defmodule Kaffy.Utils do
432
432
433
433
defp get_schemas ( mods ) do
434
434
Enum . filter ( mods , fn m ->
435
- if is_module ( m ) do
436
- functions = m . __info__ ( :functions )
437
- Keyword . has_key? ( functions , :__schema__ ) && Map . has_key? ( m . __struct__ , :__meta__ )
438
- else
439
- false
440
- end
435
+ functions = m . __info__ ( :functions )
436
+ Keyword . has_key? ( functions , :__schema__ ) && Map . has_key? ( m . __struct__ , :__meta__ )
441
437
end )
442
438
end
443
439
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ defmodule Kaffy.MixProject do
2
2
use Mix.Project
3
3
4
4
@ source_url "https://github.com/aesmail/kaffy"
5
- @ version "0.10.1 "
5
+ @ version "0.10.2 "
6
6
7
7
def project do
8
8
[
You can’t perform that action at this time.
0 commit comments