Skip to content

Commit eb6da97

Browse files
committed
release
1 parent 6348612 commit eb6da97

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
<!-- do not remove -->
44

5+
## 1.0.15
6+
7+
### New Features
8+
9+
- add `L.map_filter` and `L.map_first` ([#97](https://github.com/fastai/fastcore/issues/97))
10+
- These support some nice refactorings, like changing from this:
11+
```python
12+
d = []
13+
for c in cs:
14+
m = f(c)
15+
if not m:
16+
continue
17+
d.append(m.group(1))
18+
```
19+
to this:
20+
```python
21+
d = cs.map_filter(f).map(Self.group(1))
22+
```
523

624
## 1.0.14
725

0 commit comments

Comments
 (0)