Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,16 +57,16 @@ conditional on the target.

```toml
[dependencies]
openkal = "0.5.0"
openkal = "0.5.1"

[target.'cfg(os = "linux")'.dependencies]
openkal-linux = "0.5.0"
openkal-linux = "0.5.1"

[target.'cfg(os = "macos")'.dependencies]
openkal-macos = "0.3.0"
openkal-macos = "0.3.1"

[target.'cfg(windows)'.dependencies]
openkal-windows = "0.1.0"
openkal-windows = "0.1.1"
```

The program imports the interface and names no implementation.
Expand Down
4 changes: 2 additions & 2 deletions conformance/mcpp.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
namespace = "mcpplibs"
name = "openkal-conformance"
version = "0.5.0"
version = "0.5.1"
description = "The behavioural half of clause 9: a suite an implementation of openkal runs against itself, selectable to the interfaces it provides."
license = "Apache-2.0"
authors = ["mcpplibs"]
Expand All @@ -18,7 +18,7 @@ repo = "https://github.com/mcpplibs/openkal"
# What it depends upon is therefore openkal and the language. The formatting in
# okc.report is the price of that, and it is sixty lines.
[dependencies]
openkal = "0.5.0"
openkal = "0.5.1"

# The implementation under examination is not named here.
#
Expand Down
2 changes: 1 addition & 1 deletion mcpp.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
namespace = "mcpplibs"
name = "openkal"
version = "0.5.0"
version = "0.5.1"
description = "openkal: a portable kernel ABI specification. This package carries the normative declarations; implementations are separate packages."
license = "Apache-2.0"
authors = ["mcpplibs"]
Expand Down
Loading