diff --git a/CHANGELOG.md b/CHANGELOG.md index c7cbef6..de6d636 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ 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-wasm@0.0.276-rc34, docx-rs@0.4.6 (4. Nov, 2022) + +- Support Pic alignment +- fix #554 Special characters are being carried across using HTML entities vs unicode + ## docx-wasm@0.0.276-rc32 (1. Nov, 2022) - Fix TableProperty json types. diff --git a/Cargo.lock b/Cargo.lock index 33404d6..86c2b63 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -143,7 +143,7 @@ checksum = "0e25ea47919b1560c4e3b7fe0aaab9becf5b84a10325ddf7db0f0ba5e1026499" [[package]] name = "docx-rs" -version = "0.4.5" +version = "0.4.6" dependencies = [ "base64", "image", diff --git a/docx-core/Cargo.toml b/docx-core/Cargo.toml index bb0b20e..e8a37d3 100644 --- a/docx-core/Cargo.toml +++ b/docx-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "docx-rs" -version = "0.4.5" +version = "0.4.6" authors = ["bokuweb "] repository = "https://github.com/bokuweb/docx-rs" edition = "2018" diff --git a/docx-wasm/package.json b/docx-wasm/package.json index 326bcca..4f2abed 100644 --- a/docx-wasm/package.json +++ b/docx-wasm/package.json @@ -1,6 +1,6 @@ { "name": "docx-wasm", - "version": "0.0.276-rc32", + "version": "0.0.276-rc34", "main": "dist/node/index.js", "browser": "dist/web/index.js", "author": "bokuweb ",