-
Notifications
You must be signed in to change notification settings - Fork 7
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
69bf361
commit 021e041
Showing
1 changed file
with
33 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,33 @@ | ||
# Changelog | ||
## [Unreleased] | ||
|
||
## [0.2.0] - 2022-10-20 | ||
### Added | ||
- Added all functions from lz-string | ||
- Added most of the tests from lz-string | ||
- Added basic Python Binding | ||
|
||
### Removed | ||
- Removed `str_to_u32_vec` | ||
|
||
### Changed | ||
- Renamed `compress_uri` to `compress_to_encoded_uri_component` | ||
- Renamed `decompress_uri` to `decompress_from_encoded_uri_component` | ||
- Renamed `compress_str` to `compress` | ||
- Renamed `decompress` to `decompress` | ||
- Renamed `compress` to `compress_internal` | ||
- Renamed `decompress` to `decompress_internal` | ||
- Changed many interfaces to use the `IntoWideIter` instead of u32 slices | ||
|
||
### Fixed | ||
- Fix issues with compressing and decompressing long, nonrepeating inputs | ||
|
||
## [0.0.1] - 2023-01-23 | ||
### Added | ||
- Initial port of lz-string to Rust | ||
- Add `compress`/`decompress` functions | ||
- Add `compress_str`/`compress_str` functions | ||
- Add `compress_uri`/`compress_uri` functions | ||
- Add utility `str_to_u32_vec` function | ||
|
||
[0.1.0]: https://github.com/adumbidiot/lz-str-rs/releases/tag/0.1.0 |