Skip to content

Commit

Permalink
v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AldaronLau committed Jul 26, 2020
1 parent 097cff7 commit 103378c
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 3 deletions.
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,42 @@ All notable changes to PNG Pong 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://jeronlau.tk/semver/).

## 0.6.0 - 2020-07-26
### Added
- `chunk::ColorType` and `PngRaster` for reading PNGs without conversion
- Lots of chunks to the Chunk API
- `CompressedText`
- `ImageData`
- `ImageEnd`
- `ImageHeader`
- `Palette`
- `Physical`
- `Time`
- `Background`
- `Transparency`
- `encode::Result`
- `decode::Result`
- `Decoder` - A builder for decoder types
- `Encoder` - A builder for encoder types

### Changed
- Renamed `EncodeError` -> `encode::Error`
- Renamed `DecodeError` -> `decode::Error`
- Renamed `chunk::TextChunk` -> `chunk::Text`
- Renamed `chunk::ITextChunk` -> `InternationalText`
- Renamed `Frame` -> `Step`
- Renamed `ChunkDecoder` -> `decode::Chunks`
- Renamed `ChunkEncoder` -> `encode::ChunkEnc`
- Renamed `FrameDecoder` -> `decode::Steps`
- Renamed `FrameEncoder` -> `encode::StepEnc`

### Removed
- `Format` trait
- `ParseError`, the very lame integer error.

### Fixed
- Chunk APIs not working

## 0.5.0 - 2020-05-05
### Changed
- Update to pix 0.13
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

[package]
name = "png_pong"
version = "0.5.0"
version = "0.6.0"
authors = ["Jeron Aldaron Lau <jeronlau@plopgrizzly.com>"]
license = "Apache-2.0 OR Zlib"

Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
// or http://opensource.org/licenses/Zlib>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.

//! A library for decoding and encoding GIF images and animations.
//! A library for decoding and encoding PNG images and APNG animations.
//!
//! ## Getting Started
//! Add the following to your `Cargo.toml`.
//!
//! ```toml
//! [dependencies.png_pong]
//! version = "0.5"
//! version = "0.6"
//! ```
//!
//! ### Example
Expand Down

0 comments on commit 103378c

Please sign in to comment.