Skip to content

Commit

Permalink
0.2.32: language changes and some internal refactorings.
Browse files Browse the repository at this point in the history
- breaking change: long-time deprecated aliases `Encoder` and
  `Decoder` are finally gone. use `RawEncoder` and `RawDecoder`
  instead.

- the test binary is now faster to build.

- internal stateful decoder framework has been rewritten
  in order to take account for ISO-2022-JP (#86).
  • Loading branch information
lifthrasiir committed Apr 23, 2015
1 parent 02440c1 commit 058aeac
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "encoding"
version = "0.2.31"
version = "0.2.32"
authors = ["Kang Seonghoon <[email protected]>"]

description = "Character encoding support for Rust"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[Encoding][doc] 0.2.31
[Encoding][doc] 0.2.32
======================

[![Encoding on Travis CI][travis-image]][travis]
Expand Down Expand Up @@ -27,7 +27,7 @@ Or in the case you are using Rust 1.0 beta, pin the exact version:

```toml
[dependencies]
encoding = "=0.2.31"
encoding = "=0.2.32"
```

Then put this in your crate root:
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

/*!
# Encoding 0.2.31
# Encoding 0.2.32
Character encoding support for Rust. (also known as `rust-encoding`)
It is based on [WHATWG Encoding Standard](http://encoding.spec.whatwg.org/),
Expand All @@ -23,7 +23,7 @@ Or in the case you are using Rust 1.0 beta, pin the exact version:
```toml
[dependencies]
encoding = "=0.2.31"
encoding = "=0.2.32"
```
Then put this in your crate root:
Expand Down

0 comments on commit 058aeac

Please sign in to comment.