multi_compress 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +14 -0
- data/ext/multi_compress/multi_compress.c +870 -249
- data/lib/multi_compress/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 15213fdf865a1f1d5b0e1cf633eaeefb4d99bbddec83b387bc8f40d76f68f50d
|
|
4
|
+
data.tar.gz: cd3d3ed89cfd94e5fa38af97cae5f77d48c691372057cb5bf178ae5b483d343c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ec0db3f2c01b4769000bdac812a5dfb334ff86f8f51994048ba449f7bce81f491494d9874e1b8b386b9d98a207b6805189a53a1115c5f55c9da1b8b9ceb02db2
|
|
7
|
+
data.tar.gz: ed30e24a53e6ab4aeb5ace71b0f7a937cf17da591669b800cdc5e513fe6e7874522e39aac9057f68de2bd6dc3da669857c0021fd9c1ddf41822d2ad6684dc0cf
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.1] — Unreleased
|
|
4
|
+
|
|
5
|
+
### Breaking Changes
|
|
6
|
+
- **REMOVED**: `MultiCompress::Dictionary.train` method - general dictionary training interface removed
|
|
7
|
+
- Dictionary training is now algorithm-specific to clarify capabilities
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- `MultiCompress::Brotli.train_dictionary` - Brotli-specific dictionary training method
|
|
11
|
+
- Clear indication that only Brotli supports dictionary training in this implementation
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- Dictionary training API is now more explicit about which algorithms support it
|
|
15
|
+
- Improved API clarity by making training method algorithm-specific
|
|
16
|
+
|
|
3
17
|
## [0.1.0] — Unreleased
|
|
4
18
|
|
|
5
19
|
### Added
|