Skip to content

Commit 967f10a

Browse files
committed
release: v2.3.0
* lots of new documentation * fixed broken types from tsc regression * updated github workflow to deno 2.2.12
1 parent a00617e commit 967f10a

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/deno.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
strategy:
2222
matrix:
23-
deno: ["v1.41.1"]
23+
deno: ["v2.2.12"]
2424
os: [ubuntu-latest]
2525

2626
steps:

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@baetheus/fun",
3-
"version": "2.2.2",
3+
"version": "2.3.0",
44
"exports": {
55
"./ideas/dux": "./ideas/dux.ts",
66
"./applicable": "./applicable.ts",

newtype.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const ValueSymbol = Symbol("Value");
4444
* const int = 1 as Integer;
4545
* const num = 1 as number;
4646
*
47-
* declare function addOne(n: Integer): number;
47+
* const addOne = (n: Integer): number => (n as unknown as number) + 1;
4848
*
4949
* addOne(int); // This is ok!
5050
* // addOne(num); // This is not

0 commit comments

Comments
 (0)