next-release.md
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
### BREAKING CHANGES - All symbols defined in the **num** module have been moved to the **global** module. - All symbols defined in the **logic** module have been moved to the **global** module. - All symbols defined in the **str** module have been moved to the **global** module. - All symbols defined in the **seq** module have been moved to the **global** module. - Removed **lambdabind** (use **lambda-bind** instead). - The **stack** module is no longer imported. - **stack** module: removed symbol **id**. - **stack** module: renamed **clear-stack** to **clear**. - **stack** module: removed **clearstack** (use **stack.clear** instead). - **stack** module: renamed **get-stack** to **get**. - **stack** module: removed **getstack** (use **stack.get** instead). - **stack** module: renamed **set-stack** to **set**. - **stack** module: removed **setstack** (use **stack.set** instead). - The **io** module is no longer imported. - **io** module: renamed **fwrite** and **write** to **fs.write** - **io** module: renamed **fread** and **read** to **fs.read** - **io** module: renamed **fappend** to **fs.append** - **io** module: moved **print** to the **global** module. - **io** module: removed **newline** (use `"" puts!` instead). - The **fs** module is no longer imported. - **fs** module: renamed **fperms** to **fs.permissions** - **fs** module: renamed **fsize** to **fs.size** - **fs** module: renamed **fstats** to **fs.stats** - **fs** module: renamed **ftype** to **fs.type** - The **time** module is no longer imported. - **time** module: renamed **tformat** to **time.format** - **time** module: renamed **timeinfo** to **time.info** - **time** module: renamed **timestamp** to **time.stamp** - The **dict** module is no longer imported. - **dict** moduule: renamed **dhas?** to **dict.has?** - **dict** moduule: renamed **dget** to **dict.get** - **dict** moduule: renamed **dget-raw** to **dict.get-raw** - **dict** moduule: renamed **dset** to **dict.set** - **dict** moduule: renamed **dset-sym** to **dict.set-sym** - **dict** moduule: renamed **ddel** to **dict.del** - **dict** moduule: renamed **dkeys** to **dict.keys** - **dict** moduule: renamed **dvalues** to **dict.values** - **dict** moduule: renamed **dpairs** to **dict.pairs** - **dict** moduule: renamed **ddup** to **dict.dup** - **dict** moduule: renamed **dpick** to **dict.pick** - **dict** moduule: renamed **dtype** to **dict.type** ### New Features ### Fixes and Improvements |