version 0.13.0

This commit is contained in:
Vinzenz Schroeter 2025-01-16 20:51:56 +01:00
parent 04cda144ed
commit 7e1fb6cc99
7 changed files with 14 additions and 11 deletions

6
Cargo.lock generated
View file

@ -931,7 +931,7 @@ dependencies = [
[[package]] [[package]]
name = "servicepoint" name = "servicepoint"
version = "0.12.0" version = "0.13.0"
dependencies = [ dependencies = [
"bitvec", "bitvec",
"bzip2", "bzip2",
@ -948,7 +948,7 @@ dependencies = [
[[package]] [[package]]
name = "servicepoint_binding_c" name = "servicepoint_binding_c"
version = "0.12.0" version = "0.13.0"
dependencies = [ dependencies = [
"cbindgen", "cbindgen",
"servicepoint", "servicepoint",
@ -956,7 +956,7 @@ dependencies = [
[[package]] [[package]]
name = "servicepoint_binding_uniffi" name = "servicepoint_binding_uniffi"
version = "0.12.0" version = "0.13.0"
dependencies = [ dependencies = [
"servicepoint", "servicepoint",
"thiserror 2.0.11", "thiserror 2.0.11",

View file

@ -8,7 +8,7 @@ members = [
] ]
[workspace.package] [workspace.package]
version = "0.12.0" version = "0.13.0"
[workspace.lints.rust] [workspace.lints.rust]
missing-docs = "warn" missing-docs = "warn"

View file

@ -17,7 +17,7 @@ cargo add servicepoint
or or
```toml ```toml
[dependencies] [dependencies]
servicepoint = "0.12.0" servicepoint = "0.13.0"
``` ```
## Examples ## Examples
@ -39,8 +39,11 @@ Execute `cargo run --example` for a list of available examples and `cargo run --
## Note on stability ## Note on stability
This library is still in early development. This library can be used for creative project or just to play around with the display.
You can absolutely use it, and it works, but expect minor breaking changes with every version bump. A decent coverage by unit tests prevents major problems and I also test this with my own projects, which mostly use up-to-date versions.
That being said, the API is still being worked on.
Expect minor breaking changes with every version bump.
Please specify the full version including patch in your Cargo.toml until 1.0 is released. Please specify the full version including patch in your Cargo.toml until 1.0 is released.
## Features ## Features

View file

@ -17,7 +17,7 @@ crate-type = ["staticlib", "cdylib", "rlib"]
cbindgen = "0.27.0" cbindgen = "0.27.0"
[dependencies.servicepoint] [dependencies.servicepoint]
version = "0.12.0" version = "0.13.0"
path = "../servicepoint" path = "../servicepoint"
features = ["all_compressions"] features = ["all_compressions"]

View file

@ -20,7 +20,7 @@ uniffi = { version = "0.25.3" }
thiserror.workspace = true thiserror.workspace = true
[dependencies.servicepoint] [dependencies.servicepoint]
version = "0.12.0" version = "0.13.0"
path = "../servicepoint" path = "../servicepoint"
features = ["all_compressions"] features = ["all_compressions"]

View file

@ -9,7 +9,7 @@
<PropertyGroup> <PropertyGroup>
<PackageId>ServicePoint</PackageId> <PackageId>ServicePoint</PackageId>
<Version>0.12.0</Version> <Version>0.13.0</Version>
<Authors>Repository Authors</Authors> <Authors>Repository Authors</Authors>
<Company>None</Company> <Company>None</Company>
<Product>ServicePoint</Product> <Product>ServicePoint</Product>

View file

@ -1,6 +1,6 @@
Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = "servicepoint" s.name = "servicepoint"
s.version = "0.12.0" s.version = "0.13.0"
s.summary = "" s.summary = ""
s.description = "" s.description = ""
s.authors = ["kaesaecracker"] s.authors = ["kaesaecracker"]