From a4b974f15e4290161cdefffad2a9401029233b84 Mon Sep 17 00:00:00 2001 From: Henri Chataing Date: Wed, 21 Jan 2026 11:06:51 +0100 Subject: [PATCH] Update version to 0.4.3 --- 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 3ecc527..fc59311 100644 --- a/pdl-compiler/Cargo.toml +++ b/pdl-compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pdl-compiler" -version = "0.4.2" +version = "0.4.3" 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 022e986..e9908a6 100644 --- a/pdl-derive/Cargo.toml +++ b/pdl-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pdl-derive" -version = "0.4.2" +version = "0.4.3" edition = "2021" description = "PDL's derive macro" repository = "https://github.com/google/pdl/" @@ -24,12 +24,12 @@ proc-macro = true [dependencies] codespan-reporting = "0.13.1" -pdl-compiler = {path = "../pdl-compiler", version = "0.4.2"} +pdl-compiler = {path = "../pdl-compiler", version = "0.4.3"} 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.4.2"} +pdl-runtime = {path = "../pdl-runtime", version = "0.4.3"} bytes = "1.4.0" diff --git a/pdl-runtime/Cargo.toml b/pdl-runtime/Cargo.toml index de40c9c..321f1fd 100644 --- a/pdl-runtime/Cargo.toml +++ b/pdl-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pdl-runtime" -version = "0.4.2" +version = "0.4.3" edition = "2021" description = "PDL's runtime library" repository = "https://github.com/google/pdl/"