File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Next version
4
4
5
- - BREAKING: Remove ` Exn ` module. https://github.com/rescript-association/rescript-core/pull/230
5
+ - Deprecated ` Exn ` module. Use the ` Error ` module instead . https://github.com/rescript-association/rescript-core/pull/230
6
6
7
7
## 1.5.2
8
8
Original file line number Diff line number Diff line change @@ -82,6 +82,8 @@ var $$BigUint64Array;
82
82
83
83
var $$Intl ;
84
84
85
+ var Exn ;
86
+
85
87
var $$Option ;
86
88
87
89
var List ;
@@ -131,6 +133,7 @@ export {
131
133
$$BigInt64Array ,
132
134
$$BigUint64Array ,
133
135
$$Intl ,
136
+ Exn ,
134
137
$$Option ,
135
138
List ,
136
139
Result ,
Original file line number Diff line number Diff line change @@ -94,6 +94,9 @@ async function main() {
94
94
*/
95
95
external import : 'a => promise <'a > = "#import"
96
96
97
+ @deprecated ("Use `Error` module instead" )
98
+ module Exn = Js .Exn
99
+
97
100
module Option = Core__Option
98
101
module List = Core__List
99
102
module Result = Core__Result
You can’t perform that action at this time.
0 commit comments