From ec9e5913548260a02a1bcde65c93d1be8ec4778f Mon Sep 17 00:00:00 2001 From: Henri Chataing Date: Mon, 13 Nov 2023 09:48:28 -0800 Subject: [PATCH] Update version to 0.2.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 a50b93f..4d86b22 100644 --- a/pdl-compiler/Cargo.toml +++ b/pdl-compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pdl-compiler" -version = "0.2.2" +version = "0.2.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 3c0730e..2172a33 100644 --- a/pdl-derive/Cargo.toml +++ b/pdl-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pdl-derive" -version = "0.2.2" +version = "0.2.3" 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.2.2"} +pdl-compiler = {path = "../pdl-compiler", version = "0.2.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.2.2"} +pdl-runtime = {path = "../pdl-runtime", version = "0.2.3"} bytes = "1.4.0" diff --git a/pdl-runtime/Cargo.toml b/pdl-runtime/Cargo.toml index 9f6ad40..986c1c2 100644 --- a/pdl-runtime/Cargo.toml +++ b/pdl-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pdl-runtime" -version = "0.2.2" +version = "0.2.3" edition = "2021" description = "PDL's runtime library" repository = "https://github.com/google/pdl/"