Skip to content

Releases: AnswerDotAI/fastcore

1.0.15

26 Sep 14:04
Compare
Choose a tag to compare

1.0.15

New Features

  • add L.map_filter and L.map_first (#97)
    • These support some nice refactorings, like changing from this:
      d = []
      for c in cs:
        m = f(c)
        if not m:
          continue
        d.append(m.group(1))
      to this:
      d = cs.map_filter(f).map(Self.group(1))

1.0.14

24 Sep 02:49
Compare
Choose a tag to compare

1.0.14

Bugs Squashed

  • Reapply fix for #86 which was unintentionally reverted by the next commit (#91)

1.0.13

18 Sep 16:53
Compare
Choose a tag to compare

1.0.13

New Features

  • dict2obj: Convert (possibly nested) dicts (or lists of dicts) to SimpleNamespace (#90)

1.0.12

16 Sep 13:45
Compare
Choose a tag to compare

1.0.12

New Features

  • add function support to store_attr (#85)

Bugs Squashed

  • 'mp_context' keyword for initialising concurrent.futures.ProcessPoolExecutor only supported in python 3.7+ (#86)

1.0.11

15 Sep 03:35
Compare
Choose a tag to compare

1.0.11

1.0.10

15 Sep 00:21
Compare
Choose a tag to compare

1.0.10

1.0.8

08 Sep 22:40
Compare
Choose a tag to compare

1.0.8

1.0.5

08 Sep 17:36
Compare
Choose a tag to compare

1.0.5

1.0.4

06 Sep 20:54
Compare
Choose a tag to compare
fix last fix

1.0.3

06 Sep 20:32
Compare
Choose a tag to compare
CHANGELOG.md