Skip to content

Commit

Permalink
prep for 0.1.4 crate release (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
zeeshanlakhani authored May 11, 2020
1 parent b9a1122 commit a2c4e1b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "capsule"
version = "0.1.3"
version = "0.1.4"
authors = ["Capsule Developers <[email protected]>"]
license = "Apache-2.0"
edition = "2018"
readme = "../README.md"
repository = "https://github.com/capsule-rs/capsule"
keywords = ["nfv", "network-functions", "packet-processing", "packet-parsing", "dpdk"]
categories = ["network-programming", "development-tools::ffi"]
documentation = "https://docs.rs/capsule/0.1.3/capsule/"
documentation = "https://docs.rs/capsule/0.1.4/capsule/"
description = """
A framework for network function development. Written in Rust, inspired by
NetBricks and built on Intel's Data Plane Development Kit.
Expand All @@ -20,8 +20,8 @@ path = "src/lib.rs"
doctest = false

[dependencies]
capsule-ffi = { version = "0.1.3", path = "../ffi" }
capsule-macros = { version = "0.1.3", path = "../macros" }
capsule-ffi = { version = "0.1.4", path = "../ffi" }
capsule-macros = { version = "0.1.4", path = "../macros" }
clap = "2.33"
criterion = { version = "0.3", optional = true }
failure = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
)]
#![deny(intra_doc_link_resolution_failure)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc(html_root_url = "https://docs.rs/capsule/0.1.3")]
#![doc(html_root_url = "https://docs.rs/capsule/0.1.4")]

//! A framework for network function development. Written in Rust, inspired by
//! [NetBricks] and built on Intel's [Data Plane Development Kit].
Expand Down
2 changes: 1 addition & 1 deletion ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "capsule-ffi"
version = "0.1.3"
version = "0.1.4"
authors = ["Capsule Developers <[email protected]>"]
license = "Apache-2.0"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "capsule-macros"
version = "0.1.3"
version = "0.1.4"
authors = ["Capsule Developers <[email protected]>"]
license = "Apache-2.0"
edition = "2018"
Expand Down

0 comments on commit a2c4e1b

Please sign in to comment.