You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Fix `null` falling into the object branch instead of the wildcard when pattern matching on untagged variants with both `Object` and `null` cases. https://github.com/rescript-lang/rescript/pull/8253
37
+
38
+
#### :nail_care: Polish
39
+
27
40
- Build system: Watch only source folders from build state instead of the entire project directory, and report missing configured source folders. https://github.com/rescript-lang/rescript/pull/8219
28
-
- Build system: Add OpenTelemetry tracing support for cli commands. https://github.com/rescript-lang/rescript/pull/8241
29
41
30
42
#### :house: Internal
31
43
32
-
- speed up dev container test by installing ocaml in docker image instead of in `postCreate.sh`. https://github.com/rescript-lang/rescript/pull/8230
33
-
- Migrate rewatch integration tests from bash scripts to Vitest and remove old test infrastructure. https://github.com/rescript-lang/rescript/pull/8241
44
+
- Speed up dev container test by installing OCaml in docker image instead of in `postCreate.sh`. https://github.com/rescript-lang/rescript/pull/8230
34
45
35
46
# 13.0.0-alpha.1
36
47
@@ -53,6 +64,7 @@
53
64
#### :rocket: New Feature
54
65
55
66
- Reanalyze: add scoped `@@live`/`@@dead` annotations for marking module/file sections as live or dead. https://github.com/rescript-lang/rescript/pull/8197
67
+
- Stdlib: Added Array.zip, Array.unzip, Array.zipBy, and Array.partition. https://github.com/rescript-lang/rescript/pull/8244
<ahref="https://github.com/rescript-lang/rescript/blob/HEAD/LICENSE"><imgsrc="https://img.shields.io/badge/License-LGPL%20v3-blue.svg"alt="ReScript is released under the LGPL license." /></a>
14
+
<ahref="https://github.com/rescript-lang/rescript/blob/HEAD/LICENSE"><imgsrc="https://img.shields.io/badge/License-LGPL%20%2B%20MIT-blue.svg"alt="ReScript uses both LGPL and MIT licenses." /></a>
15
15
<ahref="https://x.com/intent/follow?screen_name=rescriptlang"><imgsrc="https://img.shields.io/badge/X-000000?style=flat&logo=x&logoColor=white"alt="Follow @rescriptlang on X" /></a>
16
16
<ahref="https://bsky.app/profile/rescript-lang.org"><imgsrc="https://img.shields.io/badge/Bluesky-0285FF?logo=bluesky&logoColor=fff&style=flat"alt="Follow @rescriptlang on Bluesky" /></a>
17
17
</p>
@@ -92,9 +92,14 @@ For discussions on ongoing development, see the [Development](https://forum.resc
92
92
93
93
## 📄 License
94
94
95
-
ReScript is licensed under LGPL version 3, with relaxed rules about creating and distributing combined work. See the [LICENSE](LICENSE) file for details.
95
+
ReScript uses multiple licenses in this monorepo:
96
96
97
-
The ReScript parser (subdirectory `compiler/syntax`) is licensed under the [MIT License](compiler/syntax/LICENSE).
97
+
-`compiler/`: LGPL-3.0-or-later
98
+
-`compiler/syntax/`: MIT
99
+
-`packages/@rescript/runtime/`: MIT
100
+
-`rewatch/`: MIT
101
+
102
+
See the repository license index in [`LICENSE`](LICENSE) and full license texts in [`COPYING.LESSER`](COPYING.LESSER) and [`LICENSE.MIT`](LICENSE.MIT).
0 commit comments