Skip to content
This repository was archived by the owner on Jan 22, 2023. It is now read-only.

Commit e50116c

Browse files
author
David Zukowski
committed
release(0.19.0)
1 parent 50879e4 commit e50116c

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## v0.19.0
2+
3+
### Migration path
4+
* `mapValues` has been deprecated because `map` now supports objects. Replace
5+
usage of `mapValues` with `map`.
6+
7+
### Features
8+
* Added `intersection`.
9+
* Added `match`.
10+
* Added `pad`.
11+
* Added `padLeft`.
12+
* Added `padRight`.
13+
* Added `unique`.
14+
15+
### Fixes
16+
* Functions with an arity > 3 now properly report their arity when partially
17+
applied.
18+
19+
### Improvements
20+
* `map` now supports plain objects.
21+
* Curried functions now provide better stringified representations for a better debugging experience.
22+
123
## v0.18.0
224

325
### Migration path

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "halcyon",
3-
"version": "0.18.0",
3+
"version": "0.19.0",
44
"description": "A better Standard Library for JavaScript",
55
"main": "halcyon.js",
66
"module": "halcyon.next.js",

0 commit comments

Comments
 (0)