Skip to content

Commit d905415

Browse files
committed
Release 0.3.1
1 parent d6a111e commit d905415

4 files changed

Lines changed: 13 additions & 13 deletions

File tree

.rustfmt.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
max_width = 80
2+
format_strings = true
3+
imports_indent = "Block"
4+
reorder_imports = true
5+
use_try_shorthand = true

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.3.1] - 2022-04-12
8+
### 🐛 Fixed
9+
- Fixed a bug in decompress, where the high part of the offset was not shifted by the correct number
10+
of bits, resulting in the wrong part of the data being copied
11+
- Fixed a bug in compress, where it used an encoding even if the offset value was too large,
12+
resulting in the high bits being cut off
13+
714
## [0.3.0] - 2020-05-31
815
### ℹ Changed
916
- Switched error handling library from `failure` to `thiserror`

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "quicklz"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Flakebi <flakebi@t-online.de>"]
55
description = """
66
QuickLZ is a fast compression algorithm.
@@ -13,7 +13,6 @@ categories = ["compression"]
1313
license = "MIT/Apache-2.0"
1414
include = [
1515
"src/*",
16-
"Format.md",
1716
"README.md",
1817
"Cargo.toml"
1918
]

rustfmt.toml

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)