diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7391b28..65a2b6f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0-alpha.71" + ".": "0.1.0-alpha.72" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7aaa831..f0c8a30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.1.0-alpha.72 (2026-02-17) + +Full Changelog: [v0.1.0-alpha.71...v0.1.0-alpha.72](https://github.com/stainless-api/stainless-api-cli/compare/v0.1.0-alpha.71...v0.1.0-alpha.72) + +### Refactors + +* remove lint step from preview command ([11cd933](https://github.com/stainless-api/stainless-api-cli/commit/11cd933c8021ea4fff3d936e98b21037699ebff0)) + ## 0.1.0-alpha.71 (2026-02-17) Full Changelog: [v0.1.0-alpha.70...v0.1.0-alpha.71](https://github.com/stainless-api/stainless-api-cli/compare/v0.1.0-alpha.70...v0.1.0-alpha.71) diff --git a/pkg/cmd/dev.go b/pkg/cmd/dev.go index bb1c349..b6071fd 100644 --- a/pkg/cmd/dev.go +++ b/pkg/cmd/dev.go @@ -123,14 +123,6 @@ func runPreview(ctx context.Context, cmd *cli.Command) error { // Phase 3: Start build and monitor progress in a loop for { - // Make the user get past linter errors - if err := runLinter(ctx, cmd, true); err != nil { - if errors.Is(err, build.ErrUserCancelled) { - return nil - } - return err - } - // Start the build process if err := runDevBuild(ctx, client, wc, cmd, selectedBranch, targets); err != nil { if errors.Is(err, build.ErrUserCancelled) { diff --git a/pkg/cmd/version.go b/pkg/cmd/version.go index f607ade..d32800e 100644 --- a/pkg/cmd/version.go +++ b/pkg/cmd/version.go @@ -2,4 +2,4 @@ package cmd -const Version = "0.1.0-alpha.71" // x-release-please-version +const Version = "0.1.0-alpha.72" // x-release-please-version