From 45684133159ed981091ad0cef20619787b776f87 Mon Sep 17 00:00:00 2001 From: Daniel Egger Date: Tue, 24 Sep 2024 16:30:33 +0200 Subject: [PATCH] Document changes and release 0.93.0 Signed-off-by: Daniel Egger --- Cargo.toml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3f714aa..0fc8a6d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ license = "BSD-3-Clause" name = "rusp" readme = "README.md" repository = "https://github.com/axiros/rusp" -version = "0.92.0" +version = "0.93.0" [badges] [badges.travis-ci] diff --git a/README.md b/README.md index 4b867a7..fe9b462 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ At the moment this mostly allows converting Protobuf encapsulated USP **Record** messages via command line tool. -**NEWSFLASH**: 0.90+ adds a new builder API which is a lot more feature rich, feature complete and easier to use and will replace the old "generator" API which is poised to be deprecated in the next version and removed in 1.0. The rusp application was changed to use the builder API and gained a few more tricks with even more to come. +**NEWSFLASH**: 0.93.0 moves to owned types and removed the deprecated generator API. If you're using the binary, you won't observe any changes, if you use the library, expect a bit of update work but a much nicer interface. In order to download, compile and install the `rusp` binary it is sufficient to have a stable Rust environment and run: @@ -76,7 +76,7 @@ After this you should be able to use the `rusp` binary, which has built-in help ... [dependencies] -rusp = "0.92" +rusp = "0.93.0" quick-protobuf = "0.8" ...