Skip to content

Commit

Permalink
Release 0.6.0 for llvm-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmth committed Aug 5, 2024
1 parent 0868a03 commit efdb66c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ When importing this crate in your `Cargo.toml`, you will need to specify the LLV

```toml
[dependencies]
llvm-plugin = { git = "https://github.com/jamesmth/llvm-plugin-rs", branch = "master", features = ["llvm18-0"] }
llvm-plugin = { version = "0.6", features = ["llvm18-0"] }
```

Supported versions: LLVM 10-18 mapping to a cargo feature flag `llvm*-0` where `*` corresponds to the LLVM major version.
Expand Down
6 changes: 3 additions & 3 deletions llvm-plugin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "llvm-plugin"
version = "0.5.0"
version = "0.6.0"
authors = ["James Smith <[email protected]>"]
categories = ["development-tools::ffi"]
description = "A wrapper for easily implementing out-of-source-tree LLVM plugins in Rust."
Expand Down Expand Up @@ -53,8 +53,8 @@ target-riscv = ["inkwell/target-riscv"]
target-all = ["inkwell/target-all"]

[dependencies]
inkwell = { git = "https://github.com/TheDan64/inkwell", rev = "5c9f7fc" }
inkwell_internals = { git = "https://github.com/TheDan64/inkwell", rev = "5c9f7fc" }
inkwell = "0.5"
inkwell_internals = "0.10.0"
llvm-plugin-macros = { path = "../llvm-plugin-macros", version = "0.2", optional = true }

[build-dependencies]
Expand Down

0 comments on commit efdb66c

Please sign in to comment.