Skip to content

Commit

Permalink
Update version numbers and changelogs for v4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ortham committed Sep 15, 2022
1 parent 830fda2 commit 4438b30
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,12 @@

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

## [4.0.0] - 2022-09-15

### Changed

- Internal code quality improvements.

## [3.5.1] - 2022-03-27

### Changed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "esplugin"
version = "3.5.1"
version = "4.0.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
12 changes: 12 additions & 0 deletions ffi/CHANGELOG.md
Expand Up @@ -2,6 +2,18 @@

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

## [4.0.0] - 2022-09-15

### Added

- Some public functions now have documentation comments.

### Changed

- `esp_plugin_masters()` now takes a pointer to a `size_t` instead of a pointer
to a `u8` as its array size output parameter. This means that the function
will correctly handle invalid plugins with more than 255 masters.

## [3.5.1] - 2022-03-27

### Changed
Expand Down
4 changes: 2 additions & 2 deletions ffi/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "esplugin-ffi"
version = "3.5.1"
version = "4.0.0"
authors = ["Oliver Hamlet <oliver@ortham.io>"]
build = "build.rs"
description = "A wrapper library providing a C FFI for esplugin."
Expand All @@ -17,7 +17,7 @@ exclude = [
]

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

[lib]
Expand Down

0 comments on commit 4438b30

Please sign in to comment.