Skip to content

Commit fd63c3c

Browse files
committed
Bump minimum version to rust 1.40
1 parent db95934 commit fd63c3c

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
2323

2424
## 0.4.0
2525

26-
- Migration to stable (rust 1.39+) async/await
26+
- Migration to stable (rust 1.40+) async/await
2727
- Transaction aren't cloned anymore, they are shared by reference. Commit/cancel/reset api requires owned/mutable access to a Transaction. This protect against undefined behavior that was previously possible (cancel/reset) data races.
2828
- No more indirection within FdbFuture. Returned future give you direct access to the result.
2929
- Support for fdb api 610+

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77

88
The repo consists of multiple crates
99

10-
| Library | Status | Description |
11-
|---------|--------|-------------|
12-
| [**foundationdb**](foundationdb/README.md) | [![Crates.io](https://img.shields.io/crates/v/foundationdb)](https://crates.io/crates/foundationdb) [![foundationdb](https://docs.rs/foundationdb/badge.svg)](https://docs.rs/foundationdb) | High level FoundationDB client API |
13-
| [**foundationdb-sys**](foundationdb-sys/README.md) | [![Crates.io](https://img.shields.io/crates/v/foundationdb-sys)](https://crates.io/crates/foundationdb-sys) [![foundationdb-sys](https://docs.rs/foundationdb-sys/badge.svg)](https://docs.rs/foundationdb-sys) | C API bindings for FoundationDB |
14-
| **foundationdb-gen** | n/a | Code generator for common options and types of FoundationDB |
10+
| Library | Status | Description |
11+
| -------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------- |
12+
| [**foundationdb**](foundationdb/README.md) | [![Crates.io](https://img.shields.io/crates/v/foundationdb)](https://crates.io/crates/foundationdb) [![foundationdb](https://docs.rs/foundationdb/badge.svg)](https://docs.rs/foundationdb) | High level FoundationDB client API |
13+
| [**foundationdb-sys**](foundationdb-sys/README.md) | [![Crates.io](https://img.shields.io/crates/v/foundationdb-sys)](https://crates.io/crates/foundationdb-sys) [![foundationdb-sys](https://docs.rs/foundationdb-sys/badge.svg)](https://docs.rs/foundationdb-sys) | C API bindings for FoundationDB |
14+
| **foundationdb-gen** | n/a | Code generator for common options and types of FoundationDB |
1515

1616
The current version requires rustc 1.40+ to work (async/await feature).
1717
The previous version (0.3) is still maintained and is available within the 0.3 branch.
@@ -22,8 +22,8 @@ You can access the `master` branch documentation [here](https://clikengo.github.
2222

2323
Licensed under either of
2424

25-
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
26-
* MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
25+
- Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
26+
- MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
2727

2828
at your option.
2929

0 commit comments

Comments
 (0)