|
1 | 1 | Release Changes List |
2 | 2 | ==================== |
3 | 3 |
|
4 | | -* check sorting of categories |
5 | | -* check placement of items into categories |
6 | | -* check for ' vs ` |
7 | | -* fulfill TODOs |
8 | | -* check man page |
9 | | -* check test/release/examples |
10 | | -* check for docs/1.32/ links |
11 | | -* check forced linebreaks |
12 | | -o check links |
13 | | -* check initial '*' |
14 | | -* check initial 'A-Z' |
15 | | -* check 'see:' |
16 | | -* check for double linefeeds |
17 | | -* check for changes put too far down in file |
18 | | -* add highlights |
19 | | -o spellcheck |
20 | | - |
21 | 4 |
|
22 | 5 | version 1.32.0 |
23 | 6 | ============== |
@@ -63,7 +46,7 @@ Language Feature Improvements |
63 | 46 | (e.g., `var A: [1..3] int = 1..3; writeln(A[..2 by 2]);` prints 1) |
64 | 47 | * casts between ranges now check the validity of the stride |
65 | 48 | (see https://chapel-lang.org/docs/1.32/language/spec/conversions.html#explicit-range-conversions) |
66 | | -* enabled assigning and initilizing integral ranges from bool ranges |
| 49 | +* enabled assigning and initializing integral ranges from bool ranges |
67 | 50 | (e.g., `var r: range(int(8)) = false..true;` is now supported) |
68 | 51 | * added a compiler warning when range slicing might halt execution |
69 | 52 | (e.g., `var r1 = 1.. by 2, r2 = 2.. by 2; writeln(r1[r2]);`) |
@@ -701,7 +684,7 @@ Bug Fixes |
701 | 684 | (e.g., `var d: domain(?) = {1..5}` now works) |
702 | 685 | * fixed incorrect scoping of variables in `do`...`while` loops' conditions |
703 | 686 | * fixed a bug in which FCPs printed incorrectly with JSON serializers |
704 | | -* fiexd a bug in which unstable warnings were generated when using `_` |
| 687 | +* fixed a bug in which unstable warnings were generated when using `_` |
705 | 688 | * fixed `fifo` guard pages when using `CHPL_MEM=jemalloc` on arm-based macs |
706 | 689 | * fixed a bug when using array type expression actuals within loop bodies |
707 | 690 | * removed extra borrow when casting from a managed class to an unmanaged class |
@@ -758,7 +741,7 @@ Developer-oriented changes: Compiler Flags |
758 | 741 |
|
759 | 742 | Developer-oriented changes: Compiler improvements / changes |
760 | 743 | ----------------------------------------------------------- |
761 | | -* added protypical support for LLVM 16 |
| 744 | +* added prototypical support for LLVM 16 |
762 | 745 | * added an experimental driver mode, enabled using `--compiler-driver` |
763 | 746 | (see https://chapel-lang.org/docs/1.32/technotes/driver.html) |
764 | 747 | * improved `@deprecated` to handle deprecations from paren-ful to paren-less |
|
0 commit comments