Skip to content

Commit efdb66c

Browse files
committed
Release 0.6.0 for llvm-plugin
1 parent 0868a03 commit efdb66c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ When importing this crate in your `Cargo.toml`, you will need to specify the LLV
2727

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

3333
Supported versions: LLVM 10-18 mapping to a cargo feature flag `llvm*-0` where `*` corresponds to the LLVM major version.

llvm-plugin/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "llvm-plugin"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["James Smith <[email protected]>"]
55
categories = ["development-tools::ffi"]
66
description = "A wrapper for easily implementing out-of-source-tree LLVM plugins in Rust."
@@ -53,8 +53,8 @@ target-riscv = ["inkwell/target-riscv"]
5353
target-all = ["inkwell/target-all"]
5454

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

6060
[build-dependencies]

0 commit comments

Comments
 (0)