Skip to content

Commit

Permalink
Update version numbers and changelogs for v3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ortham committed Apr 17, 2021
1 parent e4e1bee commit 6ca28cd
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 3 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@

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

## [3.4.0] - 2021-04-17

### Added

- `Plugin::is_light_plugin()` is the preferred alias of
`Plugin::is_light_master_file()` as it reflects that not all plugins with the
light flag set are masters.
- `Plugin::is_valid_as_light_plugin()` is the preferred alias of
`Plugin::is_valid_as_light_master()`.

### Changed

- Updated to nom v6.0.0.

### Deprecated

- `Plugin::is_light_master_file()`: use the alias `Plugin::is_light_plugin()`
instead.
- `Plugin::is_valid_as_light_master()`: use the alias
`Plugin::is_valid_as_light_plugin()` instead.

## [3.3.1] - 2020-04-03

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

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

## [3.4.0] - 2021-04-17

### Added

- `esp_plugin_is_valid_as_light_plugin()` is the preferred alias of
`esp_plugin_is_valid_as_light_master()` as it reflects that not all plugins with the
light flag set are masters.

### Changed

- Updated to esplugin v3.4.0.
- Updated to cbindgen v0.19.

### Deprecated

- `esp_plugin_is_valid_as_light_master()`: use the alias
`esp_plugin_is_valid_as_light_plugin()` instead.

## [3.3.1] - 2020-04-03

### Changed
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.3.1"
version = "3.4.0"
authors = ["Oliver Hamlet <oliver@ortham.io>"]
build = "build.rs"
description = "A wrapper library providing a C FFI for esplugin."
Expand All @@ -16,7 +16,7 @@ exclude = [
]

[dependencies]
esplugin = { version = "3.3.1", path = ".." }
esplugin = { version = "3.4.0", path = ".." }
libc = "0.2"

[lib]
Expand Down

0 comments on commit 6ca28cd

Please sign in to comment.