Skip to content

Commit

Permalink
bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
danielrh committed Dec 5, 2018
1 parent 0314268 commit d7d431f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "brotli"
version = "3.1.2"
version = "3.1.3"
authors = ["Daniel Reiter Horn <danielrh@dropbox.com>", "The Brotli Authors"]
description = "A brotli compressor and decompressor that with an interface avoiding the rust stdlib. This makes it suitable for embedded devices and kernels. It is designed with a pluggable allocator so that the standard lib's allocator may be employed. The default build also includes a stdlib allocator and stream interface. Disable this with --features=no-stdlib. All included code is safe."
license = "BSD-3-Clause/MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/enc/threading.rs
Expand Up @@ -443,7 +443,7 @@ pub fn CompressMulti<Alloc:BrotliAlloc+Send+'static,
match mem::replace(&mut thread.0, InternalSendAlloc::SpawningOrJoining(PhantomData::default())) {
InternalSendAlloc::A(_, _) | InternalSendAlloc::SpawningOrJoining(_) => panic!("Thread not properly spawned"),
InternalSendAlloc::Join(join) => match join.join() {
Ok(mut result) => result,
Ok(result) => result,
Err(err) => {
return Err(err);
}
Expand Down

0 comments on commit d7d431f

Please sign in to comment.