diff --git a/CHANGELOG.md b/CHANGELOG.md index 6016cfce..0790ba2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 0.17.3-alpha.1 ### Python — partial fields without a wrapper class diff --git a/Cargo.lock b/Cargo.lock index 6c02863b..5ea701f1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1692,7 +1692,7 @@ dependencies = [ [[package]] name = "reflectapi" -version = "0.17.2" +version = "0.17.3-alpha.1" dependencies = [ "anyhow", "axum", @@ -1721,7 +1721,7 @@ dependencies = [ [[package]] name = "reflectapi-cli" -version = "0.17.2" +version = "0.17.3-alpha.1" dependencies = [ "anyhow", "clap", @@ -1785,7 +1785,7 @@ dependencies = [ [[package]] name = "reflectapi-derive" -version = "0.17.2" +version = "0.17.3-alpha.1" dependencies = [ "proc-macro-error", "proc-macro2", @@ -1797,7 +1797,7 @@ dependencies = [ [[package]] name = "reflectapi-schema" -version = "0.17.2" +version = "0.17.3-alpha.1" dependencies = [ "glob", "serde", diff --git a/reflectapi-cli/Cargo.toml b/reflectapi-cli/Cargo.toml index a8abad35..dcd359b7 100644 --- a/reflectapi-cli/Cargo.toml +++ b/reflectapi-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reflectapi-cli" -version = "0.17.2" +version = "0.17.3-alpha.1" edition = "2021" default-run = "reflectapi" @@ -23,7 +23,7 @@ doc = false workspace = true [dependencies] -reflectapi = { path = "../reflectapi", version = "0.17.2", features = ["codegen"] } +reflectapi = { path = "../reflectapi", version = "0.17.3-alpha.1", features = ["codegen"] } rouille = "3" clap = { version = "4.5.3", features = ["derive"] } diff --git a/reflectapi-demo/clients/python/uv.lock b/reflectapi-demo/clients/python/uv.lock index dc9b56dc..ca69ea88 100644 --- a/reflectapi-demo/clients/python/uv.lock +++ b/reflectapi-demo/clients/python/uv.lock @@ -266,7 +266,7 @@ dev = [ [[package]] name = "reflectapi-runtime" -version = "0.17.2" +version = "0.17.3a1" source = { editable = "../../../reflectapi-python-runtime" } dependencies = [ { name = "httpx" }, diff --git a/reflectapi-derive/Cargo.toml b/reflectapi-derive/Cargo.toml index b6a4d39d..8067c45b 100644 --- a/reflectapi-derive/Cargo.toml +++ b/reflectapi-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reflectapi-derive" -version = "0.17.2" +version = "0.17.3-alpha.1" edition = "2021" license = "Apache-2.0" @@ -22,7 +22,7 @@ workspace = true proc-macro = true [dependencies] -reflectapi-schema = { path = '../reflectapi-schema', version = "0.17.2" } +reflectapi-schema = { path = '../reflectapi-schema', version = "0.17.3-alpha.1" } proc-macro2 = "1.0" quote = "1.0" diff --git a/reflectapi-python-runtime/pyproject.toml b/reflectapi-python-runtime/pyproject.toml index fcca4855..ff879069 100644 --- a/reflectapi-python-runtime/pyproject.toml +++ b/reflectapi-python-runtime/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "reflectapi-runtime" -version = "0.17.2" +version = "0.17.3a1" description = "Runtime library for ReflectAPI Python clients" readme = "README.md" requires-python = ">=3.12" diff --git a/reflectapi-python-runtime/src/reflectapi_runtime/__init__.py b/reflectapi-python-runtime/src/reflectapi_runtime/__init__.py index 0b184290..097654f4 100644 --- a/reflectapi-python-runtime/src/reflectapi_runtime/__init__.py +++ b/reflectapi-python-runtime/src/reflectapi_runtime/__init__.py @@ -50,7 +50,7 @@ ) from .types import BatchResult, ReflectapiEmpty, ReflectapiInfallible -__version__ = "0.17.2" +__version__ = "0.17.3a1" __all__ = [ # Authentication diff --git a/reflectapi-schema/Cargo.toml b/reflectapi-schema/Cargo.toml index f37c8169..33e0dadc 100644 --- a/reflectapi-schema/Cargo.toml +++ b/reflectapi-schema/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reflectapi-schema" -version = "0.17.2" +version = "0.17.3-alpha.1" edition = "2021" license = "Apache-2.0" diff --git a/reflectapi/Cargo.toml b/reflectapi/Cargo.toml index 89022605..1e027837 100644 --- a/reflectapi/Cargo.toml +++ b/reflectapi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reflectapi" -version = "0.17.2" +version = "0.17.3-alpha.1" edition = "2021" license = "Apache-2.0" @@ -20,8 +20,8 @@ workspace = true [dependencies] # workspace dependencies -reflectapi-derive = { path = "../reflectapi-derive", version = "0.17.2" } -reflectapi-schema = { path = "../reflectapi-schema", version = "0.17.2" } +reflectapi-derive = { path = "../reflectapi-derive", version = "0.17.3-alpha.1" } +reflectapi-schema = { path = "../reflectapi-schema", version = "0.17.3-alpha.1" } # mandatory 3rd party dependencies serde = { version = "1.0.197", features = ["derive"] }