Skip to content

Commit

Permalink
Release 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Flakebi committed Apr 12, 2022
1 parent d6a111e commit d905415
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
5 changes: 5 additions & 0 deletions .rustfmt.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
max_width = 80
format_strings = true
imports_indent = "Block"
reorder_imports = true
use_try_shorthand = true
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.1] - 2022-04-12
### 🐛 Fixed
- Fixed a bug in decompress, where the high part of the offset was not shifted by the correct number
of bits, resulting in the wrong part of the data being copied
- Fixed a bug in compress, where it used an encoding even if the offset value was too large,
resulting in the high bits being cut off

## [0.3.0] - 2020-05-31
### ℹ Changed
- Switched error handling library from `failure` to `thiserror`
Expand Down
3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quicklz"
version = "0.3.0"
version = "0.3.1"
authors = ["Flakebi <flakebi@t-online.de>"]
description = """
QuickLZ is a fast compression algorithm.
Expand All @@ -13,7 +13,6 @@ categories = ["compression"]
license = "MIT/Apache-2.0"
include = [
"src/*",
"Format.md",
"README.md",
"Cargo.toml"
]
Expand Down
11 changes: 0 additions & 11 deletions rustfmt.toml

This file was deleted.

0 comments on commit d905415

Please sign in to comment.