version 0.2

This commit is contained in:
Vinzenz Schroeter 2024-05-12 18:29:27 +02:00
parent 4bb505650c
commit 76907a8e3d
3 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View file

@ -599,7 +599,7 @@ dependencies = [
[[package]]
name = "servicepoint2"
version = "0.1.3"
version = "0.2.0"
dependencies = [
"bzip2",
"cbindgen",

View file

@ -1,6 +1,6 @@
[package]
name = "servicepoint2"
version = "0.1.3"
version = "0.2.0"
publish = true
edition = "2021"
license = "GPL-3.0-or-later"

View file

@ -183,7 +183,7 @@ uintptr_t sp2_byte_grid_width(const struct sp2_PixelGrid *this_);
uintptr_t sp2_byte_grid_height(const struct sp2_PixelGrid *this_);
/**
* Tries to load a command from the passed array with the specified length.
* Tries to load a `Command` from the passed array with the specified length.
*
* returns: NULL in case of an error, pointer to the allocated command otherwise
*/
@ -269,7 +269,7 @@ struct sp2_Command *sp2_command_bitmap_linear_win(uint16_t x,
struct sp2_PixelGrid *byte_grid);
/**
* Deallocates a command. Note that connection_send does this implicitly, so you only need
* Deallocates a `Command`. Note that connection_send does this implicitly, so you only need
* to do this if you use the library for parsing commands.
*/
void sp2_command_dealloc(struct sp2_Command *ptr);