From 552e3d409fa73a93e879e062550827d2bf3440bd Mon Sep 17 00:00:00 2001 From: Henri Chataing Date: Fri, 15 Nov 2024 09:08:51 -0800 Subject: [PATCH] Update version to 0.3.2 --- pdl-compiler/Cargo.toml | 2 +- pdl-derive/Cargo.toml | 6 +++--- pdl-runtime/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pdl-compiler/Cargo.toml b/pdl-compiler/Cargo.toml index 7d9ea31..0e6438b 100644 --- a/pdl-compiler/Cargo.toml +++ b/pdl-compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pdl-compiler" -version = "0.3.1" +version = "0.3.2" edition = "2021" description = "Parser and serializer generator for protocol binary packets" repository = "https://github.com/google/pdl/" diff --git a/pdl-derive/Cargo.toml b/pdl-derive/Cargo.toml index 368fd92..9f5c17c 100644 --- a/pdl-derive/Cargo.toml +++ b/pdl-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pdl-derive" -version = "0.3.1" +version = "0.3.2" edition = "2021" description = "PDL's derive macro" repository = "https://github.com/google/pdl/" @@ -21,12 +21,12 @@ proc-macro = true [dependencies] codespan-reporting = "0.11.1" -pdl-compiler = {path = "../pdl-compiler", version = "0.3.1"} +pdl-compiler = {path = "../pdl-compiler", version = "0.3.2"} proc-macro2 = "1.0.66" quote = "1.0.33" syn = {version = "2.0.29", features = ["full"]} termcolor = "1.2.0" [dev-dependencies] -pdl-runtime = {path = "../pdl-runtime", version = "0.3.1"} +pdl-runtime = {path = "../pdl-runtime", version = "0.3.2"} bytes = "1.4.0" diff --git a/pdl-runtime/Cargo.toml b/pdl-runtime/Cargo.toml index 70bd6f2..14e70c8 100644 --- a/pdl-runtime/Cargo.toml +++ b/pdl-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pdl-runtime" -version = "0.3.1" +version = "0.3.2" edition = "2021" description = "PDL's runtime library" repository = "https://github.com/google/pdl/"