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 5, 2023
1 parent e4b8ef6 commit 0bf4f95
Show file tree
Hide file tree
Showing 4 changed files with 29 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.

## [4.1.0] - 2023-09-05

### Added

- Support for parsing Starfield plugins.
- `GameId::supports_light_plugins()`, which returns true for Skyrim SE,
Fallout 4 and Starfield.
- `Plugin::is_override_plugin()`, which checks if a Starfield plugin is
loaded as an override plugin.
- `Plugin::is_valid_as_override_plugin()`, which checks if a Starfield plugin
contains no new records.

## [4.0.0] - 2022-09-15

### 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 = "4.0.0"
version = "4.1.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
14 changes: 14 additions & 0 deletions ffi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

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

## [4.1.0] - 2023-09-05

### Added

- `ESP_GAME_STARFIELD` as the game code to use with Starfield plugins.
- `esp_plugin_is_override_plugin()`, which checks if a Starfield plugin is
loaded as an override plugin.
- `esp_plugin_is_valid_as_override_plugin()`, which checks if a Starfield plugin
contains no new records.

### Changed

- Updated to esplugin v4.1.0.

## [4.0.0] - 2022-09-15

### 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 = "4.0.0"
version = "4.1.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 = "4.0.0", path = ".." }
esplugin = { version = "4.1.0", path = ".." }
libc = "0.2"

[lib]
Expand Down

0 comments on commit 0bf4f95

Please sign in to comment.