diff --git a/Cargo.lock b/Cargo.lock index 788e680..7016c4c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -931,7 +931,7 @@ dependencies = [ [[package]] name = "servicepoint" -version = "0.12.0" +version = "0.13.0" dependencies = [ "bitvec", "bzip2", @@ -948,7 +948,7 @@ dependencies = [ [[package]] name = "servicepoint_binding_c" -version = "0.12.0" +version = "0.13.0" dependencies = [ "cbindgen", "servicepoint", @@ -956,7 +956,7 @@ dependencies = [ [[package]] name = "servicepoint_binding_uniffi" -version = "0.12.0" +version = "0.13.0" dependencies = [ "servicepoint", "thiserror 2.0.11", diff --git a/Cargo.toml b/Cargo.toml index 1b5a109..e1bb85f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ members = [ ] [workspace.package] -version = "0.12.0" +version = "0.13.0" [workspace.lints.rust] missing-docs = "warn" diff --git a/crates/servicepoint/README.md b/crates/servicepoint/README.md index e4bae8a..fe4e24e 100644 --- a/crates/servicepoint/README.md +++ b/crates/servicepoint/README.md @@ -17,7 +17,7 @@ cargo add servicepoint or ```toml [dependencies] -servicepoint = "0.12.0" +servicepoint = "0.13.0" ``` ## Examples @@ -39,8 +39,11 @@ Execute `cargo run --example` for a list of available examples and `cargo run -- ## Note on stability -This library is still in early development. -You can absolutely use it, and it works, but expect minor breaking changes with every version bump. +This library can be used for creative project or just to play around with the display. +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. ## Features diff --git a/crates/servicepoint_binding_c/Cargo.toml b/crates/servicepoint_binding_c/Cargo.toml index 0a4d2d5..27acabc 100644 --- a/crates/servicepoint_binding_c/Cargo.toml +++ b/crates/servicepoint_binding_c/Cargo.toml @@ -17,7 +17,7 @@ crate-type = ["staticlib", "cdylib", "rlib"] cbindgen = "0.27.0" [dependencies.servicepoint] -version = "0.12.0" +version = "0.13.0" path = "../servicepoint" features = ["all_compressions"] diff --git a/crates/servicepoint_binding_uniffi/Cargo.toml b/crates/servicepoint_binding_uniffi/Cargo.toml index 0365d19..3c52369 100644 --- a/crates/servicepoint_binding_uniffi/Cargo.toml +++ b/crates/servicepoint_binding_uniffi/Cargo.toml @@ -20,7 +20,7 @@ uniffi = { version = "0.25.3" } thiserror.workspace = true [dependencies.servicepoint] -version = "0.12.0" +version = "0.13.0" path = "../servicepoint" features = ["all_compressions"] diff --git a/crates/servicepoint_binding_uniffi/libraries/csharp/ServicePoint/ServicePoint.csproj b/crates/servicepoint_binding_uniffi/libraries/csharp/ServicePoint/ServicePoint.csproj index 135a26f..26e1dd7 100644 --- a/crates/servicepoint_binding_uniffi/libraries/csharp/ServicePoint/ServicePoint.csproj +++ b/crates/servicepoint_binding_uniffi/libraries/csharp/ServicePoint/ServicePoint.csproj @@ -9,7 +9,7 @@ ServicePoint - 0.12.0 + 0.13.0 Repository Authors None ServicePoint diff --git a/crates/servicepoint_binding_uniffi/libraries/ruby/servicepoint.gemspec b/crates/servicepoint_binding_uniffi/libraries/ruby/servicepoint.gemspec index 477a9ff..97129de 100644 --- a/crates/servicepoint_binding_uniffi/libraries/ruby/servicepoint.gemspec +++ b/crates/servicepoint_binding_uniffi/libraries/ruby/servicepoint.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = "servicepoint" - s.version = "0.12.0" + s.version = "0.13.0" s.summary = "" s.description = "" s.authors = ["kaesaecracker"]