Skip to content

Commit

Permalink
0.1.5 (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
zeeshanlakhani authored Mar 11, 2021
1 parent 4314a3a commit 44771ea
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ The goal of `Capsule` is to offer an ergonomic framework for network function de
- a fast packet processor that uses minimum number of CPU cycles.
- a rich packet type system that guarantees memory-safety and thread-safety.
- a declarative programming model that emphasizes simplicity.
- an extensible and testable framework that is easy to develop and maintain.
- an extendable and testable framework that is easy to develop and maintain.

## Quick Start

Expand Down
6 changes: 3 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "capsule"
version = "0.1.4"
version = "0.1.5"
authors = ["Capsule Developers <[email protected]>"]
license = "Apache-2.0"
edition = "2018"
Expand All @@ -21,8 +21,8 @@ doctest = false

[dependencies]
anyhow = "1.0"
capsule-ffi = { version = "0.1.4", path = "../ffi" }
capsule-macros = { version = "0.1.4", path = "../macros" }
capsule-ffi = { version = "0.1.5", path = "../ffi" }
capsule-macros = { version = "0.1.5", path = "../macros" }
clap = "2.33"
criterion = { version = "0.3", optional = true }
futures-preview = "=0.3.0-alpha.19"
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(broken_intra_doc_links)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc(html_root_url = "https://docs.rs/capsule/0.1.4")]
#![doc(html_root_url = "https://docs.rs/capsule/0.1.5")]

//! 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.4"
version = "0.1.5"
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.4"
version = "0.1.5"
authors = ["Capsule Developers <[email protected]>"]
license = "Apache-2.0"
edition = "2018"
Expand Down

0 comments on commit 44771ea

Please sign in to comment.