Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -1342,6 +1342,47 @@ variations are not available for MBPP.
|
|
1342 |
|
1343 |
## Changelog
|
1344 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1345 |
### Version 3.1
|
1346 |
|
1347 |
MultiPL-E now supports Dart, thanks to [Devon Carew](https://github.com/devoncarew).
|
|
|
1342 |
|
1343 |
## Changelog
|
1344 |
|
1345 |
+
### Version 3.1.1
|
1346 |
+
|
1347 |
+
This version fixes a bug that affected some TypeScript problems, thanks to [Niels Mündler
|
1348 |
+
](https://github.com/nielstron). The issue impacts MBPP-based problems. The fix changes
|
1349 |
+
whitespace in a few HumanEval-based problems that should be insignificant. These
|
1350 |
+
are the relevant changes:
|
1351 |
+
|
1352 |
+
```diff
|
1353 |
+
=== mbpp-ts_prompt_mbpp_253_count_integer.diff ===
|
1354 |
+
- function count_integer(list1: number| string| number[]): number {
|
1355 |
+
+ function count_integer(list1: (number | string | number)[]): number {
|
1356 |
+
=== mbpp-ts_prompt_mbpp_278_count_first_elements.diff ===
|
1357 |
+
- function count_first_elements(test_tup: number| [number, number][]): number {
|
1358 |
+
+ function count_first_elements(test_tup: (number | [number, number])[]): number {
|
1359 |
+
=== mbpp-ts_prompt_mbpp_294_max_val.diff ===
|
1360 |
+
- function max_val(listval: string| number[]): number {
|
1361 |
+
+ function max_val(listval: (string | number)[]): number {
|
1362 |
+
=== mbpp-ts_prompt_mbpp_297_flatten_list.diff ===
|
1363 |
+
- function flatten_list(list1: number| number[][]): number[] {
|
1364 |
+
+ function flatten_list(list1: (number | number[])[]): number[] {
|
1365 |
+
=== mbpp-ts_prompt_mbpp_405_check_tuplex.diff ===
|
1366 |
+
- function check_tuplex(tuplex: string| number[], tuple1: any): boolean {
|
1367 |
+
+ function check_tuplex(tuplex: (string | number)[], tuple1: any): boolean {
|
1368 |
+
=== mbpp-ts_prompt_mbpp_410_min_val.diff ===
|
1369 |
+
- function min_val(listval: string| number[]): number {
|
1370 |
+
+ function min_val(listval: (string | number)[]): number {
|
1371 |
+
=== mbpp-ts_prompt_mbpp_419_round_and_sum.diff ===
|
1372 |
+
- function round_and_sum(list1: number| number[]): number {
|
1373 |
+
+ function round_and_sum(list1: (number | number)[]): number {
|
1374 |
+
=== mbpp-ts_prompt_mbpp_65_recursive_list_sum.diff ===
|
1375 |
+
- function recursive_list_sum(data_list: number| number[][]): number {
|
1376 |
+
+ function recursive_list_sum(data_list: (number | number[])[]): number {
|
1377 |
+
=== mbpp-ts_prompt_mbpp_755_second_smallest.diff ===
|
1378 |
+
- function second_smallest(numbers: number| number[]): number | undefined {
|
1379 |
+
+ function second_smallest(numbers: (number | number)[]): number | undefined {
|
1380 |
+
```
|
1381 |
+
|
1382 |
+
See [Github Issue 160](https://github.com/nuprl/MultiPL-E/issues/160) for more
|
1383 |
+
information.
|
1384 |
+
|
1385 |
+
|
1386 |
### Version 3.1
|
1387 |
|
1388 |
MultiPL-E now supports Dart, thanks to [Devon Carew](https://github.com/devoncarew).
|