Skip to content

Commit

Permalink
Update version numbers and changelogs for v3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ortham committed Sep 6, 2019
1 parent e42394d commit e2183b9
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

As of v1.0.4, version numbers are shared between esplugin and esplugin-ffi.

## [3.2.0] - 2019-09-06

### Added

- `Plugin::overlap_size()` for counting how many of the plugin's records are
also present in the given plugins.

### Fixed

- `Plugin::overlaps_with()` could fail to detect an overlap between Morrowind
plugins.

## [3.0.0] - 2019-07-21

### Changed
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 = "esplugin"
version = "3.0.0"
version = "3.2.0"
authors = ["Oliver Hamlet <oliver.hamlet@gmail.com>"]
description = "A free software library for reading Elder Scrolls plugin (.esp/.esm/.esl) files."
documentation = "https://docs.rs/esplugin"
Expand Down
12 changes: 12 additions & 0 deletions ffi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

After v1.0.3, version numbers are shared between esplugin and esplugin-ffi.

## [3.2.0] - 2019-09-06

### Added

- `esp_plugin_records_overlap_size()`, which wraps `Plugin::overlap_size()`,
for counting how many of the plugin's records are also present in the given
plugins.

### Changed

- Updated to esplugin v3.2.0.

## [3.1.0] - 2019-08-30

### Added
Expand Down
4 changes: 2 additions & 2 deletions ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "esplugin-ffi"
version = "3.1.0"
version = "3.2.0"
authors = ["Oliver Hamlet <oliver.hamlet@gmail.com>"]
build = "build.rs"
description = "A wrapper library providing a C FFI for esplugin."
Expand All @@ -16,7 +16,7 @@ exclude = [
]

[dependencies]
esplugin = { version = "3.0.0", path = ".." }
esplugin = { version = "3.2.0", path = ".." }
libc = "0.2"

[lib]
Expand Down

0 comments on commit e2183b9

Please sign in to comment.