Skip to content

Commit

Permalink
Bump to v0.2.17 (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lichtso authored Dec 7, 2021
1 parent 849c7c2 commit f2a286b
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 14 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "solana_rbpf"
version = "0.2.16"
version = "0.2.17"
description = "Virtual machine and JIT compiler for eBPF programs"
authors = ["Solana Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/rbpf"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ so it should work out of the box by adding it as a dependency in your

```toml
[dependencies]
solana_rbpf = "0.2.16"
solana_rbpf = "0.2.17"
```

You can also use the development version from this GitHub repository. This
Expand Down
7 changes: 3 additions & 4 deletions cli/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rbpf_cli"
version = "0.2.16"
version = "0.2.17"
description = "CLI to test and analyze eBPF programs"
authors = ["Solana Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/rbpf"
Expand Down
4 changes: 2 additions & 2 deletions cli/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use clap::{App, Arg};
use clap::{crate_version, App, Arg};
use solana_rbpf::{
assembler::assemble,
elf::Executable,
Expand Down Expand Up @@ -38,7 +38,7 @@ impl SyscallObject<UserError> for MockSyscall {

fn main() {
let matches = App::new("Solana RBPF CLI")
.version("0.2.16")
.version(crate_version!())
.author("Solana Maintainers <[email protected]>")
.about("CLI to test and analyze eBPF programs")
.arg(
Expand Down
4 changes: 2 additions & 2 deletions test_utils/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test_utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test_utils"
version = "0.2.16"
version = "0.2.17"
authors = ["Solana Maintainers <[email protected]>"]
edition = "2018"
publish = false
Expand Down

0 comments on commit f2a286b

Please sign in to comment.