Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.3]

### Added

- Add `just publish` and `just publish-dry-run` recipes for publishing the
`openapi-nexus` crate to crates.io.

### Fixed

- Detect plain inline `oneOf` members with required single-value string enum
tags as internally tagged unions in OpenAPI 3.0, 3.1, and 3.2. This preserves
nested field conversion in TypeScript clients using camel-case properties.

## [0.2.2]

### Changed
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ members = [
]

[workspace.package]
version = "0.2.2"
version = "0.2.3"
edition = "2024"
rust-version = "1.90"
description = "OpenAPI 3.x multi-language code generator"
Expand Down
10 changes: 10 additions & 0 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,16 @@ golden-update: golden-typescript::update golden-go::update golden-rust::update g
# Compile-check all goldens
golden-build-all: golden-typescript::build golden-go::build golden-rust::build golden-python::build golden-java::build golden-kotlin::build

# ---------- Publish ----------

# Dry-run publish to verify packaging
publish-dry-run:
cargo publish --dry-run -p openapi-nexus

# Publish openapi-nexus to crates.io
publish:
cargo publish -p openapi-nexus

# ---------- CI (run everything locally) ----------

# Run the full CI pipeline locally
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ OpenAPI Nexus transforms OpenAPI specifications into type-safe client libraries.
**Shell installer (no Rust toolchain needed):**

```sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/rust-codegen-group/openapi-nexus/releases/download/0.2.2/openapi-nexus-installer.sh | sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/rust-codegen-group/openapi-nexus/releases/download/0.2.3/openapi-nexus-installer.sh | sh
```

**Nightly build (latest main):**
Expand Down
2 changes: 1 addition & 1 deletion docs/src/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
**Shell installer (no Rust toolchain needed):**

```sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/rust-codegen-group/openapi-nexus/releases/download/0.2.2/openapi-nexus-installer.sh | sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/rust-codegen-group/openapi-nexus/releases/download/0.2.3/openapi-nexus-installer.sh | sh
```

**Nightly build (latest main):**
Expand Down
Loading