From 4dbe66da6a922c64436a8f3a00a4ab1f0ebafbb6 Mon Sep 17 00:00:00 2001 From: David Duarte Date: Fri, 24 May 2024 21:33:37 +0000 Subject: [PATCH] Update version to 0.3.0 --- 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 4d86b22..bfd1edf 100644 --- a/pdl-compiler/Cargo.toml +++ b/pdl-compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pdl-compiler" -version = "0.2.3" +version = "0.3.0" 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 2172a33..f570405 100644 --- a/pdl-derive/Cargo.toml +++ b/pdl-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pdl-derive" -version = "0.2.3" +version = "0.3.0" 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.3"} +pdl-compiler = {path = "../pdl-compiler", version = "0.3.0"} 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.3"} +pdl-runtime = {path = "../pdl-runtime", version = "0.3.0"} bytes = "1.4.0" diff --git a/pdl-runtime/Cargo.toml b/pdl-runtime/Cargo.toml index 986c1c2..e1d300f 100644 --- a/pdl-runtime/Cargo.toml +++ b/pdl-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pdl-runtime" -version = "0.2.3" +version = "0.3.0" edition = "2021" description = "PDL's runtime library" repository = "https://github.com/google/pdl/"