Skip to content

Commit

Permalink
Bump to v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDan64 committed May 5, 2023
1 parent 13c6c3b commit 04fac60
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "inkwell"
version = "0.1.1"
version = "0.2.0"
authors = ["Daniel Kolsoi <thadan64@gmail.com>"]
description = "Inkwell aims to help you pen your own programming languages by safely wrapping llvm-sys."
documentation = "https://thedan64.github.io/inkwell/"
Expand Down Expand Up @@ -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 }
Expand Down
4 changes: 2 additions & 2 deletions internal_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 04fac60

Please sign in to comment.