Skip to content

Commit dd314b7

Browse files
jkebingerclaude
andauthored
chore: Bump version to 0.0.7 (#67)
* Update changelog * chore: Bump version to 0.0.7 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * Update readme --------- Co-authored-by: Claude <noreply@anthropic.com>
1 parent bbaea6b commit dd314b7

3 files changed

Lines changed: 25 additions & 20 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 0.0.7 - 2025-10-20
4+
5+
- Adds "whoami" command and optional verbose logging to debug login process [#65]
6+
- Updated `get` command to support encrypted config values that need a local env var to decrypt [#66]
7+
38
## 0.0.6 - 2025-10-13
49

510
- fix: Handle enum values that come back as a single string, not an array of strings

README.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ $ npm install -g @reforge-com/cli
1414
$ reforge COMMAND
1515
running command...
1616
$ reforge (--version)
17-
@reforge-com/cli/0.0.6 darwin-arm64 node-v24.4.0
17+
@reforge-com/cli/0.0.7 darwin-arm64 node-v24.4.0
1818
$ reforge --help [COMMAND]
1919
USAGE
2020
$ reforge COMMAND
@@ -91,7 +91,7 @@ EXAMPLES
9191
$ reforge create my.new.string --type json --value="{\"key\": \"value\"}"
9292
```
9393

94-
_See code: [src/commands/create.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.6/src/commands/create.ts)_
94+
_See code: [src/commands/create.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.7/src/commands/create.ts)_
9595

9696
## `reforge download`
9797

@@ -124,7 +124,7 @@ EXAMPLES
124124
$ reforge download --environment=test --sdk-key=YOUR_SDK_KEY
125125
```
126126

127-
_See code: [src/commands/download.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.6/src/commands/download.ts)_
127+
_See code: [src/commands/download.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.7/src/commands/download.ts)_
128128

129129
## `reforge generate`
130130

@@ -187,7 +187,7 @@ EXAMPLES
187187
$ reforge generate --target react-ts,node-ts # both node+react-ts
188188
```
189189
190-
_See code: [src/commands/generate.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.6/src/commands/generate.ts)_
190+
_See code: [src/commands/generate.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.7/src/commands/generate.ts)_
191191
192192
## `reforge generate-new-hex-key`
193193
@@ -210,7 +210,7 @@ EXAMPLES
210210
$ reforge generate-new-hex-key
211211
```
212212
213-
_See code: [src/commands/generate-new-hex-key.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.6/src/commands/generate-new-hex-key.ts)_
213+
_See code: [src/commands/generate-new-hex-key.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.7/src/commands/generate-new-hex-key.ts)_
214214
215215
## `reforge get [NAME]`
216216
@@ -243,7 +243,7 @@ EXAMPLES
243243
$ reforge get my.config.name --environment=production
244244
```
245245
246-
_See code: [src/commands/get.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.6/src/commands/get.ts)_
246+
_See code: [src/commands/get.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.7/src/commands/get.ts)_
247247
248248
## `reforge info [NAME]`
249249
@@ -274,7 +274,7 @@ EXAMPLES
274274
$ reforge info my.config.name
275275
```
276276
277-
_See code: [src/commands/info.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.6/src/commands/info.ts)_
277+
_See code: [src/commands/info.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.7/src/commands/info.ts)_
278278
279279
## `reforge interactive`
280280
@@ -292,7 +292,7 @@ EXAMPLES
292292
$ reforge
293293
```
294294
295-
_See code: [src/commands/interactive.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.6/src/commands/interactive.ts)_
295+
_See code: [src/commands/interactive.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.7/src/commands/interactive.ts)_
296296
297297
## `reforge list`
298298
@@ -329,7 +329,7 @@ EXAMPLES
329329
$ reforge list --feature-flags
330330
```
331331
332-
_See code: [src/commands/list.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.6/src/commands/list.ts)_
332+
_See code: [src/commands/list.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.7/src/commands/list.ts)_
333333
334334
## `reforge login`
335335
@@ -357,7 +357,7 @@ EXAMPLES
357357
$ reforge login --profile myprofile
358358
```
359359
360-
_See code: [src/commands/login.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.6/src/commands/login.ts)_
360+
_See code: [src/commands/login.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.7/src/commands/login.ts)_
361361
362362
## `reforge logout`
363363
@@ -380,7 +380,7 @@ EXAMPLES
380380
$ reforge logout
381381
```
382382
383-
_See code: [src/commands/logout.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.6/src/commands/logout.ts)_
383+
_See code: [src/commands/logout.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.7/src/commands/logout.ts)_
384384
385385
## `reforge mcp`
386386
@@ -413,7 +413,7 @@ EXAMPLES
413413
$ reforge mcp --url http://local-launch.goatsofreforge.com:3003/api/v1/mcp
414414
```
415415
416-
_See code: [src/commands/mcp.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.6/src/commands/mcp.ts)_
416+
_See code: [src/commands/mcp.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.7/src/commands/mcp.ts)_
417417
418418
## `reforge override [NAME]`
419419
@@ -452,7 +452,7 @@ EXAMPLES
452452
$ reforge override my.double.config --value=3.14159
453453
```
454454
455-
_See code: [src/commands/override.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.6/src/commands/override.ts)_
455+
_See code: [src/commands/override.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.7/src/commands/override.ts)_
456456
457457
## `reforge profile`
458458
@@ -475,7 +475,7 @@ EXAMPLES
475475
$ reforge profile
476476
```
477477
478-
_See code: [src/commands/profile.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.6/src/commands/profile.ts)_
478+
_See code: [src/commands/profile.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.7/src/commands/profile.ts)_
479479
480480
## `reforge schema NAME`
481481
@@ -509,7 +509,7 @@ EXAMPLES
509509
$ reforge schema my-schema --get
510510
```
511511
512-
_See code: [src/commands/schema.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.6/src/commands/schema.ts)_
512+
_See code: [src/commands/schema.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.7/src/commands/schema.ts)_
513513
514514
## `reforge serve DATA-FILE`
515515
@@ -545,7 +545,7 @@ EXAMPLES
545545
$ reforge serve ./reforge.test.588.config.json --port=3099
546546
```
547547
548-
_See code: [src/commands/serve.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.6/src/commands/serve.ts)_
548+
_See code: [src/commands/serve.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.7/src/commands/serve.ts)_
549549
550550
## `reforge set-default [NAME]`
551551
@@ -589,7 +589,7 @@ EXAMPLES
589589
$ reforge set-default my.config.name --env-var=MY_ENV_VAR_NAME --environment=production
590590
```
591591
592-
_See code: [src/commands/set-default.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.6/src/commands/set-default.ts)_
592+
_See code: [src/commands/set-default.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.7/src/commands/set-default.ts)_
593593
594594
## `reforge whoami`
595595
@@ -612,7 +612,7 @@ EXAMPLES
612612
$ reforge whoami
613613
```
614614
615-
_See code: [src/commands/whoami.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.6/src/commands/whoami.ts)_
615+
_See code: [src/commands/whoami.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.7/src/commands/whoami.ts)_
616616
617617
## `reforge workspace`
618618
@@ -635,7 +635,7 @@ EXAMPLES
635635
$ reforge workspace
636636
```
637637
638-
_See code: [src/commands/workspace.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.6/src/commands/workspace.ts)_
638+
_See code: [src/commands/workspace.ts](https://github.com/ReforgeHQ/cli/blob/v0.0.7/src/commands/workspace.ts)_
639639
<!-- commandsstop -->
640640
641641
## Local Development

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"packageManager": "yarn@4.9.2",
33
"name": "@reforge-com/cli",
4-
"version": "0.0.6",
4+
"version": "0.0.7",
55
"author": "Jeffrey Chupp @semanticart",
66
"bugs": {
77
"url": "https://github.com/ReforgeHQ/cli/issues"

0 commit comments

Comments
 (0)