···103103 from 1.13 has been extended to int segments!
104104 Aside from the various performance improvements, this allows the compiler to
105105 mark more branches as unreachable.
106106+106107 ```gleam
107108 case bits {
108109 <<"a">> -> 0
···116117 _ -> 99
117118 }
118119 ```
120120+119121 ([fruno](https://github.com/fruno-bulax/))
120122121123### Build tool
···235237- The "add omitted label" code action no longer adds labels to arguments
236238 being piped in or the callbacks of `use`.
237239 ([fruno](https://github.com/fruno-bulax))
240240+241241+- Fixed a bug that caused the compiler to incorrectly optimise away runtime
242242+ size checks in bit array patterns on the javascript target if they used
243243+ calculations in the size of a segment (`_:size(wibble - wobble)`).
244244+ ([fruno](https://github.com/fruno-bulax/))
238245239246- Add a missing BitArray constructor return type in the prelude's TypeScript
240247 definitions.