-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
39a5cd9
commit 8844354
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
|
||
# Change Log | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
## [Unreleased] - yyyy-mm-dd | ||
|
||
## [0.0.1] - 2024-06-16 | ||
|
||
### Changed | ||
|
||
- Moved benchmarks to their own folder. | ||
- Switch to more general usage of `Span[UInt8]` instead of copying bytes where possible. | ||
- `bufio` `Reader` and `Writer` now use `InlineList` for the backing buffer because it does not need to grow. | ||
- `bufio` `Scanner` now uses `UnsafePointer[UInt8]` for the backing buffer, which is more unsafe than `List[UInt8]` but faster. | ||
- `bytes` `Buffer` and `Reader` now use `UnsafePointer[UInt8]` for the backing buffer, which is more unsafe than `List[UInt8]` but faster. | ||
- `goodies` package has been retired and folded into the `gojo.io` module. | ||
- `strings` `StringBuilder` now uses `UnsafePointer[UInt8]` instead of a `DTypePointer[DType.uint8]` for better compability with `List`. |