Update docs and changelog

This commit is contained in:
imaqtkatt 2024-06-19 09:52:55 -03:00
parent 4b9032ecfb
commit e0b51f1d95
2 changed files with 1 additions and 3 deletions

View File

@ -24,7 +24,7 @@ and this project does not currently adhere to a particular versioning scheme.
- Add `to_f24`, `to_u24` and `to_i24` number casting builtin functions. ([#582][gh-582])
- Add `IO/sleep` builtin function to sleep for a given amount of seconds as a float. ([#581][gh-581])
- Add primitive file IO functions `IO/FS/{read, write, seek, open, close}`. ([#573][gh-573])
- Add encoding/decoding builtin functions `Bytes/{decode_utf8, decode_ascii} String/{encode_ascii, decode_ascii} Utf8/{decode_rune, REPLACEMENT_CHARACTER}`. ([#580][gh-580])
- Add encoding/decoding builtin functions `Bytes/{decode_utf8, decode_ascii} String/{encode_ascii, decode_ascii} Utf8/{decode_character, REPLACEMENT_CHARACTER}`. ([#580][gh-580])
## [0.2.35] - 2024-06-06

View File

@ -321,8 +321,6 @@ Writes `bytes`, a list of U24 with each element representing a byte, to the file
Returns nothing (`*`).
Writing discards any preexisting content that came after the current position. For example, if your file contains the text `Hello, world!` and the current position is at the `,`, writing `!` will
#### File seek
```python