Skip to content

Commit

Permalink
Merge branch 'release-0.4.1' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-weis committed Jan 4, 2024
2 parents dfdbc83 + 6a9f237 commit e9a7842
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,22 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Fixed
### Security

## [0.4.1] - 2024-01-04

Servicing release.

### Fixed

* Bumps `nom` dependency to at least `5.1.3` to resolve a future incompatibility warning (see PR [Fix for trailing semicolon in macros.](https://github.com/rust-bakery/nom/pull/1657) for details).

## [0.4.0] - 2020-12-07

This release primarily introduces convenience implementations. Additions and removals of `error::Error` variants make this a breaking change.

### Added

* `Project::module_source_raw()`: Convenience implementation to return a module's source code (raw codepage encoding).
* `Project::module_source()`: Convenience implemention to return a module's source code converted to UTF-8 encoding.
* `Project::module_source()`: Convenience implementation to return a module's source code converted to UTF-8 encoding.
* `error::Error::ModuleNotFound`. This is used for public functions that identify modules by name.

### Changed
Expand Down Expand Up @@ -91,7 +99,8 @@ Non-breaking changes:
- VBA project parser.
- RLE decompressor for compressed streams.

[Unreleased]: https://github.com/tim-weis/ovba/compare/0.4.0...HEAD
[Unreleased]: https://github.com/tim-weis/ovba/compare/0.4.1...HEAD
[0.4.1]: https://github.com/tim-weis/ovba/compare/0.4.0...0.4.1
[0.4.0]: https://github.com/tim-weis/ovba/compare/0.3.0...0.4.0
[0.3.0]: https://github.com/tim-weis/ovba/compare/0.2.0...0.3.0
[0.2.0]: https://github.com/tim-weis/ovba/compare/0.1.0...0.2.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ovba"
version = "0.4.0"
version = "0.4.1"
authors = ["Tim Weis <[email protected]>"]
description = "An Office VBA project parser written in 100% safe Rust."
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![crates.io](https://img.shields.io/crates/v/ovba.svg)](https://crates.io/crates/ovba)
[![docs.rs](https://docs.rs/ovba/badge.svg)](https://docs.rs/ovba)
[![tests](https://github.com/tim-weis/ovba/workflows/tests/badge.svg?branch=master)](https://github.com/tim-weis/ovba/actions)
[![tests](https://github.com/tim-weis/ovba/actions/workflows/tests.yml/badge.svg?branch=master)](https://github.com/tim-weis/ovba/actions)

An Office VBA project parser written in 100% safe Rust. This is an implementation of the [\[MS-OVBA\]: Office VBA File Format Structure](https://docs.microsoft.com/en-us/openspecs/office_file_formats/ms-ovba/575462ba-bf67-4190-9fac-c275523c75fc) protocol (Revision 9.1, published 2020-02-19).

Expand Down

0 comments on commit e9a7842

Please sign in to comment.