File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,11 @@ Bugfixes:
12
12
13
13
Other improvements:
14
14
15
+ ## [ v11.0.1] ( https://github.com/purescript-node/purescript-node-process/releases/tag/v11.0.1 ) - 2023-07-21
16
+
17
+ Bugfixes:
18
+ - Fix FFI for ` channelRef ` /` channelUnref ` (#40 by @JordanMartinez )
19
+
15
20
## [ v11.0.0] ( https://github.com/purescript-node/purescript-node-process/releases/tag/v11.0.0 ) - 2023-07-21
16
21
17
22
Breaking changes:
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ export { process };
4
4
export const abortImpl = process . abort ? ( ) => process . abort ( ) : null ;
5
5
export const argv = ( ) => process . argv . slice ( ) ;
6
6
export const argv0 = ( ) => process . argv0 ;
7
- export const channelRefImpl = process . channel . ref ? ( ) => process . channel . ref ( ) : null ;
8
- export const channelUnrefImpl = process . channel . unref ? ( ) => process . channel . unref ( ) : null ;
7
+ export const channelRefImpl = process . channel && process . channel . ref ? ( ) => process . channel . ref ( ) : null ;
8
+ export const channelUnrefImpl = process . channel && process . channel . unref ? ( ) => process . channel . unref ( ) : null ;
9
9
export const chdirImpl = ( dir ) => process . chdir ( dir ) ;
10
10
export const config = ( ) => Object . assign ( { } , process . config ) ;
11
11
export const connected = ( ) => process . connected ;
You can’t perform that action at this time.
0 commit comments