Skip to content

Commit 11c2722

Browse files
committed
Bump the versions
1 parent 7ac527d commit 11c2722

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "llvm_build_utils"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Simonas Kazlauskas <git@kazlauskas.me>"]
55
build = "build.rs"
66
description = """Ever wanted to build “native” assembly stuff in your cargo build scripts…
77
something gcc crate cannot quite handle yet? Welcome to llvm_build_utils which provides a
88
convenient API to pack your .ll or .bc files into a ready to use archive full of machine code! It
99
doesn’t even need an installation of LLVM*!"""
10-
documentation = "https://crates.fyi/crates/llvm_build_utils/0.2.0"
10+
documentation = "https://crates.fyi/crates/llvm_build_utils/0.3.0"
1111
repository = "https://github.com/nagisa/llvm_build_utils.rs"
1212
keywords = ["llvm", "asm", "ll", "bc"]
1313
license = "ISC/Apache-2.0"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ to your `Cargo.toml` via:
2727
build = "build.rs"
2828

2929
[build-dependencies]
30-
llvm_build_utils = "0.2"
30+
llvm_build_utils = "0.3"
3131
```
3232

3333
Then write your `build.rs` like this:

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
//! build = "build.rs"
2121
//!
2222
//! [build-dependencies]
23-
//! llvm_build_utils = "0.1"
23+
//! llvm_build_utils = "0.3"
2424
//! ```
2525
//!
2626
//! Then write your `build.rs` like this:

0 commit comments

Comments
 (0)