Skip to content

Commit 5d11804

Browse files
committed
Update version for crates.io.
1 parent 7d01e01 commit 5d11804

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "opencl3"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
authors = ["Ken Barker <ken.barker@via-technology.aero>"]
55
description = "A Rust implementation of the Khronos OpenCL 3.0 API and extensions."
66
documentation = "https://docs.rs/opencl3/"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ OpenCL 2.0 ICD loader then just add the following to your project's `Cargo.toml`
6666

6767
```toml
6868
[dependencies]
69-
opencl3 = "0.9"
69+
opencl3 = "0.11"
7070
```
7171

7272
If your OpenCL ICD loader supports higher versions of OpenCL then add the
@@ -75,15 +75,15 @@ following to your project's `Cargo.toml` instead:
7575

7676
```toml
7777
[dependencies.opencl3]
78-
version = "0.9"
78+
version = "0.11"
7979
features = ["CL_VERSION_2_1", "CL_VERSION_2_2", "CL_VERSION_3_0"]
8080
```
8181

8282
OpenCL extensions and `serde` support can also be enabled by adding their features, e.g.:
8383

8484
```toml
8585
[dependencies.opencl3]
86-
version = "0.9"
86+
version = "0.11"
8787
features = ["cl_khr_gl_sharing", "cl_khr_dx9_media_sharing", "serde"]
8888
```
8989

RELEASES.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Releases
22

3+
## Version 0.11.0 (2025-02-19)
4+
5+
### Changes
6+
7+
* Up to date with OpenCL-Headers tag v2024.10.24.
8+
39
## Version 0.10.0 (2024-12-21)
410

511
### Bug fixes
@@ -10,7 +16,6 @@
1016

1117
* Issue [#70](https://github.com/kenba/opencl3/issues/70) UpdSupport dynamic linking.
1218

13-
1419
## Version 0.9.5 (2023-12-22)
1520

1621
### New Features

src/memory.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,8 +255,8 @@ impl<T> Buffer<T> {
255255
/// * `flags` - a bit-field used to specify allocation and usage information
256256
/// about the sub-buffer memory object being created, see:
257257
/// [Memory Flags](https://www.khronos.org/registry/OpenCL/specs/3.0-unified/html/OpenCL_API.html#memory-flags-table).
258-
/// * `origin` - the offset in number of objects of type `T``.
259-
/// * `count` - the size of the sub-buffer in number of objects of type `T``.
258+
/// * `origin` - the offset in number of objects of type `T`.
259+
/// * `count` - the size of the sub-buffer in number of objects of type `T`.
260260
///
261261
/// returns a Result containing the new OpenCL buffer object
262262
/// or the error code from the OpenCL C API function.

0 commit comments

Comments
 (0)