Skip to content

Tags: andybalholm/brotli

Tags

v1.2.1

Toggle v1.2.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Remove unnecessary nil checks

These nil-pointer checks were ineffective (the pointer would be dereferenced anyway) and unnecessary (the function is never called with a nil value for that parameter).

v1.2.0

Toggle v1.2.0's commit message
Pathfinder: improve cost calculation, and use it in NewWriterV2

v1.1.1

Toggle v1.1.1's commit message
Encoder: check for empty block

Fixes #51

v1.1.0

Toggle v1.1.0's commit message
Make my matchfinder work more accessible.

v1.0.6

Toggle v1.0.6's commit message

Unverified

No user is associated with the committer email.
remove Content-Type requirement

* golang/go#31753 is fixed

v1.0.5

Toggle v1.0.5's commit message
Reader.Reset: recover from errors.

When a Reader encounters an error, its internal state may be corrupted.
So Reset needs to be extra thorough, to avoid cascading errors.

Based on PR 37 by Sovianum.

v1.0.4

Toggle v1.0.4's commit message
Optimize log2FloorNonZero with math/bits.

v1.0.3

Toggle v1.0.3's commit message
Retract v1.0.1

v1.0.2

Toggle v1.0.2's commit message
Revert "Faster bit writing."

This reverts commit c3da72a.

With the sample data from issue 22, one byte in the output file is zero
instead of the correct value. For now at least, we'll go back to the old
way of writing bits.

Fixes #22

v1.0.1

Toggle v1.0.1's commit message
Add documentation link.

Fixes #16