Skip to content

Commit 7a22f99

Browse files
authored
chore(release): v0.68.0 (#347)
1 parent cf6ae51 commit 7a22f99

7 files changed

Lines changed: 12 additions & 12 deletions

File tree

docs/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,4 @@ Connect AI assistants like Claude Code, Cursor, and Windsurf to The Codegen Proj
7676

7777

7878

79+

docs/contributing.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,5 +192,6 @@ Prefix that follows specification is not enough though. Remember that the title
192192

193193

194194

195+
195196

196197

docs/migrations/v0.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,4 @@ Upgraded node to minimum v22.
127127

128128

129129

130+

docs/usage.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ $ npm install -g @the-codegen-project/cli
99
$ codegen COMMAND
1010
running command...
1111
$ codegen (--version)
12-
@the-codegen-project/cli/0.67.0 linux-x64 node-v22.22.0
12+
@the-codegen-project/cli/0.68.0 linux-x64 node-v22.22.0
1313
$ codegen --help [COMMAND]
1414
USAGE
1515
$ codegen COMMAND
@@ -80,7 +80,7 @@ FLAGS
8080
--silent Suppress all output except fatal errors
8181
```
8282

83-
_See code: [src/commands/base.ts](https://github.com/the-codegen-project/cli/blob/v0.67.0/src/commands/base.ts)_
83+
_See code: [src/commands/base.ts](https://github.com/the-codegen-project/cli/blob/v0.68.0/src/commands/base.ts)_
8484

8585
## `codegen generate [FILE]`
8686

@@ -111,7 +111,7 @@ DESCRIPTION
111111
configuration.
112112
```
113113

114-
_See code: [src/commands/generate.ts](https://github.com/the-codegen-project/cli/blob/v0.67.0/src/commands/generate.ts)_
114+
_See code: [src/commands/generate.ts](https://github.com/the-codegen-project/cli/blob/v0.68.0/src/commands/generate.ts)_
115115

116116
## `codegen help [COMMAND]`
117117

@@ -178,7 +178,7 @@ DESCRIPTION
178178
Initialize The Codegen Project in your project
179179
```
180180

181-
_See code: [src/commands/init.ts](https://github.com/the-codegen-project/cli/blob/v0.67.0/src/commands/init.ts)_
181+
_See code: [src/commands/init.ts](https://github.com/the-codegen-project/cli/blob/v0.68.0/src/commands/init.ts)_
182182

183183
## `codegen telemetry ACTION`
184184

@@ -211,7 +211,7 @@ EXAMPLES
211211
$ codegen telemetry disable
212212
```
213213

214-
_See code: [src/commands/telemetry.ts](https://github.com/the-codegen-project/cli/blob/v0.67.0/src/commands/telemetry.ts)_
214+
_See code: [src/commands/telemetry.ts](https://github.com/the-codegen-project/cli/blob/v0.68.0/src/commands/telemetry.ts)_
215215

216216
## `codegen version`
217217

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@the-codegen-project/cli",
33
"description": "CLI to work with code generation in any environment",
4-
"version": "0.67.0",
4+
"version": "0.68.0",
55
"bin": {
66
"codegen": "./bin/run.mjs"
77
},

src/codegen/generators/typescript/channels/openapi.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,7 @@ import {
1313
} from './types';
1414
import {ConstrainedObjectModel} from '@asyncapi/modelina';
1515
import {collectProtocolDependencies} from './utils';
16-
import {
17-
renderHttpFetchClient,
18-
renderHttpCommonTypes
19-
} from './protocols/http';
16+
import {renderHttpFetchClient, renderHttpCommonTypes} from './protocols/http';
2017
import {getMessageTypeAndModule} from './utils';
2118
import {pascalCase} from '../utils';
2219
import {createMissingInputDocumentError} from '../../../errors';

0 commit comments

Comments
 (0)