diff --git a/CHANGELOG.md b/CHANGELOG.md index cde9a9833e3..8a49d4eb6d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### TODO - TODO +## [0.2.0] - 2023-05-04 +- Added LLVM 16 support +- Updated internal_macros syn dep to v2 +- Added Module::get_globals iterator + ## [0.1.1] - 2023-02-11 - Fixed set_section method on macOS diff --git a/Cargo.toml b/Cargo.toml index db1774ea5b4..c9fd18a2f76 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "inkwell" -version = "0.1.1" +version = "0.2.0" authors = ["Daniel Kolsoi "] description = "Inkwell aims to help you pen your own programming languages by safely wrapping llvm-sys." documentation = "https://thedan64.github.io/inkwell/" @@ -88,7 +88,7 @@ nightly = ["inkwell_internals/nightly"] [dependencies] either = "1.5" -inkwell_internals = { path = "./internal_macros", version = "0.7.0" } +inkwell_internals = { path = "./internal_macros", version = "0.8.0" } libc = "0.2" llvm-sys-40 = { package = "llvm-sys", version = "40.4", optional = true } llvm-sys-50 = { package = "llvm-sys", version = "50.4", optional = true } diff --git a/internal_macros/Cargo.toml b/internal_macros/Cargo.toml index 82e32088cc4..9c3f918ad20 100644 --- a/internal_macros/Cargo.toml +++ b/internal_macros/Cargo.toml @@ -6,12 +6,12 @@ license = "Apache-2.0" name = "inkwell_internals" readme = "README.md" repository = "https://github.com/TheDan64/inkwell" -version = "0.7.0" +version = "0.8.0" [dependencies] proc-macro2 = "1.0" quote = "1.0" -syn = {version = "2.0", features = ["full", "fold"]} +syn = { version = "2.0", features = ["full", "fold"] } [lib] proc-macro = true