Skip to content

Commit 44771ea

Browse files
0.1.5 (#133)
1 parent 4314a3a commit 44771ea

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The goal of `Capsule` is to offer an ergonomic framework for network function de
4242
- a fast packet processor that uses minimum number of CPU cycles.
4343
- a rich packet type system that guarantees memory-safety and thread-safety.
4444
- a declarative programming model that emphasizes simplicity.
45-
- an extensible and testable framework that is easy to develop and maintain.
45+
- an extendable and testable framework that is easy to develop and maintain.
4646

4747
## Quick Start
4848

core/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "capsule"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
authors = ["Capsule Developers <[email protected]>"]
55
license = "Apache-2.0"
66
edition = "2018"
@@ -21,8 +21,8 @@ doctest = false
2121

2222
[dependencies]
2323
anyhow = "1.0"
24-
capsule-ffi = { version = "0.1.4", path = "../ffi" }
25-
capsule-macros = { version = "0.1.4", path = "../macros" }
24+
capsule-ffi = { version = "0.1.5", path = "../ffi" }
25+
capsule-macros = { version = "0.1.5", path = "../macros" }
2626
clap = "2.33"
2727
criterion = { version = "0.3", optional = true }
2828
futures-preview = "=0.3.0-alpha.19"

core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
)]
2525
#![deny(broken_intra_doc_links)]
2626
#![cfg_attr(docsrs, feature(doc_cfg))]
27-
#![doc(html_root_url = "https://docs.rs/capsule/0.1.4")]
27+
#![doc(html_root_url = "https://docs.rs/capsule/0.1.5")]
2828

2929
//! A framework for network function development. Written in Rust, inspired by
3030
//! [NetBricks] and built on Intel's [Data Plane Development Kit].

ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "capsule-ffi"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
authors = ["Capsule Developers <[email protected]>"]
55
license = "Apache-2.0"
66
edition = "2018"

macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "capsule-macros"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
authors = ["Capsule Developers <[email protected]>"]
55
license = "Apache-2.0"
66
edition = "2018"

0 commit comments

Comments
 (0)