From 426ce1780918404744a0fb14f35022602bee2c5e Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Wed, 5 May 2021 12:20:15 -0700 Subject: [PATCH 1/2] Export nextTick --- src/Node/Process.purs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Node/Process.purs b/src/Node/Process.purs index 8589959..286fc93 100644 --- a/src/Node/Process.purs +++ b/src/Node/Process.purs @@ -5,6 +5,7 @@ module Node.Process , onSignal , onUncaughtException , onUnhandledRejection + , nextTick , argv , execArgv , execPath From 830246a74d996f61d09c9bbb5e218875a182d97e Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Wed, 5 May 2021 12:21:31 -0700 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fcf288a..babedcb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,12 @@ Notable changes to this project are documented in this file. The format is based Breaking changes: New features: +- Export `nextTick` (#32 by @JordanMartinez) Bugfixes: Other improvements: +- Fix warnings revealed by v0.14.1 PS release (#32 by @JordanMartinez) ## [v8.1.0](https://github.com/purescript-node/purescript-node-process/releases/tag/v8.1.0) - 2021-03-19 @@ -21,7 +23,7 @@ New features: Breaking changes: - Added support for PureScript 0.14 and dropped support for all previous versions (#24) - + New features: - Added functions to register handlers for the `uncaughtException` and `unhandledRejection` events on the process (#20) - Added `unsetEnv` for deleting environment variables (#21)