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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a1afb05d5b335b931383cb6d0cb8102c93609d4e24e8d4a13fb66ab4c8cbd1e9
4
- data.tar.gz: 945e4407133c1208b86c896be35c5c664568a7f2f8a7b452c13b00caa09700b3
3
+ metadata.gz: 15213fdf865a1f1d5b0e1cf633eaeefb4d99bbddec83b387bc8f40d76f68f50d
4
+ data.tar.gz: cd3d3ed89cfd94e5fa38af97cae5f77d48c691372057cb5bf178ae5b483d343c
5
5
  SHA512:
6
- metadata.gz: 3908089b848102a6cbc4b254fc08612fef8f448f663df8445e988c2ba10dbbb8db6b118c5c00cc9cac663b6e92771138f7f35ebd7c2078bffbf3d55ab4ad492c
7
- data.tar.gz: 6f8df288d73f7ee0bcd4a6b31bc3ac46a7317b5d917fa0b999fd51baf9c06a8acea25f0f89d76b9e4cd8ae3a6e182fdfafc554585fd09c6dd360e9b76ccc977b
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