diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 8a49d4eb6d2..00000000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,23 +0,0 @@ -# Changelog -All notable changes to this project will be documented in this file. - -The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) -and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - -## [Unreleased] -### 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 - -## [0.1.0] - 2023-01-21 -- Initial release - -## [0.0.0] - 2017-06-29 -- This is a placeholder version for crates.io diff --git a/Cargo.toml b/Cargo.toml index 59a906dc9b9..05a55916d73 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "inkwell" -version = "0.4.0" +version = "0.5.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/" @@ -135,7 +135,7 @@ experimental = ["static-alloc"] nightly = ["inkwell_internals/nightly"] [dependencies] -inkwell_internals = { path = "./internal_macros", version = "0.9.0" } +inkwell_internals = { path = "./internal_macros", version = "0.10.0" } 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/README.md b/README.md index 66ab2a2d5d9..90ba58adb2c 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ You'll need to point your Cargo.toml to use a single LLVM version feature flag c ```toml [dependencies] -inkwell = { version = "0.4.0", features = ["llvm18-0"] } +inkwell = { version = "0.5.0", features = ["llvm18-0"] } ``` Supported versions: diff --git a/internal_macros/Cargo.toml b/internal_macros/Cargo.toml index e1fb6c45b36..c49467c5227 100644 --- a/internal_macros/Cargo.toml +++ b/internal_macros/Cargo.toml @@ -6,7 +6,7 @@ license = "Apache-2.0" name = "inkwell_internals" readme = "README.md" repository = "https://github.com/TheDan64/inkwell" -version = "0.9.0" +version = "0.10.0" [dependencies] proc-macro2 = "1.0"