diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d61f25..ff03cfc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,22 @@ 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). +## docx-rs@0.4.2 (25. Aug, 2022) + +- [Breaking] Hyperlink interface. +- Support hyperlink reader. +- [Breaking] Remove default `TableCellMargin`. Please specify if needed. +- Support table cell margins reader. +- Support nested table reader. +- Add png image converter +- Add `imageData` in `Shape` reader. +- [BUGFIX] Fixed a bug, it is not able to read jpeg from js. +- [BUGFIX] Fixed a bug, it is not able to write images. +- [Breaking] Add `id` and `path` to `images` output. +- [BUGFIX] Use default `numPr` if numId not found to avoid panic. +- [Breaking] Use `self.based_on` and `self.next` in `style` instead of `Normal`. +- [Breaking] Use `i32` for `PageMargin` props instead of unsigned. +- support `columns` in document. ## docx-wasm@0.0.275 (8. Aug, 2022) diff --git a/Cargo.lock b/Cargo.lock index 412084e..28abee8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -158,7 +158,7 @@ checksum = "0e25ea47919b1560c4e3b7fe0aaab9becf5b84a10325ddf7db0f0ba5e1026499" [[package]] name = "docx-rs" -version = "0.4.0" +version = "0.4.2" dependencies = [ "base64", "image", diff --git a/docx-core/Cargo.toml b/docx-core/Cargo.toml index ba906f3..fd2ad73 100644 --- a/docx-core/Cargo.toml +++ b/docx-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "docx-rs" -version = "0.4.0" +version = "0.4.2" authors = ["bokuweb "] repository = "https://github.com/bokuweb/docx-rs" edition = "2018"