From 458841ce458c9e3ad6ee9f63d57492ee5f592154 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Thu, 2 May 2024 20:45:10 +0100 Subject: [PATCH] Update version numbers and changelog for v4.0.0 --- CHANGELOG.md | 17 +++++++++++++++++ Cargo.lock | 4 ++-- Cargo.toml | 2 +- ffi/Cargo.toml | 2 +- 4 files changed, 21 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 21ae0ab..417164a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [4.0.0] - 2024-05-02 + +### Added + +- `Cargo.lock` is no longer ignored by Git. + +### Changed + +- `Error::ParsingIncomplete` now holds contextual data. +- Updated to Rust's 2021 edition. +- Updated esplugin to v5.0.1. + +### Removed + +- The `ffi-headers` build feature: if you want to generate C or C++ headers, + install and run cbindgen separately. + ## [3.1.0] - 2023-09-05 ### Added diff --git a/Cargo.lock b/Cargo.lock index 96a46fc..c71d345 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -308,7 +308,7 @@ checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" [[package]] name = "loot-condition-interpreter" -version = "3.1.0" +version = "4.0.0" dependencies = [ "crc32fast", "criterion", @@ -322,7 +322,7 @@ dependencies = [ [[package]] name = "loot-condition-interpreter-ffi" -version = "3.1.0" +version = "4.0.0" dependencies = [ "libc", "loot-condition-interpreter", diff --git a/Cargo.toml b/Cargo.toml index 4d661c7..a6e78c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "loot-condition-interpreter" -version = "3.1.0" +version = "4.0.0" authors = ["Oliver Hamlet "] license = "MIT" edition = "2021" diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index 78d0dbb..7528918 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "loot-condition-interpreter-ffi" -version = "3.1.0" +version = "4.0.0" authors = ["Oliver Hamlet "] license = "MIT" edition = "2021"