Skip to content

Commit 52cd941

Browse files
Release v6.0.2
1 parent 82c5acc commit 52cd941

21 files changed

+48
-48
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ $ npm install -g @devcycle/cli
160160
$ dvc COMMAND
161161
running command...
162162
$ dvc (--version)
163-
@devcycle/cli/6.0.1 darwin-arm64 node-v22.17.1
163+
@devcycle/cli/6.0.2 linux-x64 node-v22.19.0
164164
$ dvc --help [COMMAND]
165165
USAGE
166166
$ dvc COMMAND

docs/alias.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ EXAMPLES
3939
$ dvc alias add --alias=VARIABLE_ALIAS --variable=variable-key
4040
```
4141

42-
_See code: [src/commands/alias/add.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/alias/add.ts)_
42+
_See code: [src/commands/alias/add.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.2/src/commands/alias/add.ts)_

docs/cleanup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ EXAMPLES
5656
$ dvc cleanup some-var --value "My Custom Name" --type String
5757
```
5858

59-
_See code: [src/commands/cleanup/index.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/cleanup/index.ts)_
59+
_See code: [src/commands/cleanup/index.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.2/src/commands/cleanup/index.ts)_

docs/diff.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ EXAMPLES
5555
$ dvc diff --match-pattern js="dvcClient\.variable\(\s*["']([^"']*)["']"
5656
```
5757

58-
_See code: [src/commands/diff/index.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/diff/index.ts)_
58+
_See code: [src/commands/diff/index.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.2/src/commands/diff/index.ts)_

docs/environments.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ DESCRIPTION
4141
Create a new Environment for an existing Feature.
4242
```
4343

44-
_See code: [src/commands/environments/create.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/environments/create.ts)_
44+
_See code: [src/commands/environments/create.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.2/src/commands/environments/create.ts)_
4545

4646
## `dvc environments get [KEYS]`
4747

@@ -84,7 +84,7 @@ EXAMPLES
8484
$ dvc environments get --keys=environment-one,environment-two
8585
```
8686

87-
_See code: [src/commands/environments/get.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/environments/get.ts)_
87+
_See code: [src/commands/environments/get.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.2/src/commands/environments/get.ts)_
8888

8989
## `dvc environments list`
9090

@@ -108,7 +108,7 @@ ALIASES
108108
$ dvc environments ls
109109
```
110110

111-
_See code: [src/commands/environments/list.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/environments/list.ts)_
111+
_See code: [src/commands/environments/list.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.2/src/commands/environments/list.ts)_
112112

113113
## `dvc environments ls`
114114

@@ -164,4 +164,4 @@ DESCRIPTION
164164
Update a Environment.
165165
```
166166

167-
_See code: [src/commands/environments/update.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/environments/update.ts)_
167+
_See code: [src/commands/environments/update.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.2/src/commands/environments/update.ts)_

docs/features.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ DESCRIPTION
4343
Create a new Feature.
4444
```
4545

46-
_See code: [src/commands/features/create.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/features/create.ts)_
46+
_See code: [src/commands/features/create.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.2/src/commands/features/create.ts)_
4747

4848
## `dvc features delete [FEATURE]`
4949

@@ -72,7 +72,7 @@ DESCRIPTION
7272
Delete a feature
7373
```
7474

75-
_See code: [src/commands/features/delete.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/features/delete.ts)_
75+
_See code: [src/commands/features/delete.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.2/src/commands/features/delete.ts)_
7676

7777
## `dvc features get [KEYS]`
7878

@@ -119,7 +119,7 @@ EXAMPLES
119119
$ dvc features get --keys=feature-one,feature-two
120120
```
121121

122-
_See code: [src/commands/features/get.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/features/get.ts)_
122+
_See code: [src/commands/features/get.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.2/src/commands/features/get.ts)_
123123

124124
## `dvc features list`
125125

@@ -154,7 +154,7 @@ ALIASES
154154
$ dvc features ls
155155
```
156156

157-
_See code: [src/commands/features/list.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/features/list.ts)_
157+
_See code: [src/commands/features/list.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.2/src/commands/features/list.ts)_
158158

159159
## `dvc features ls`
160160

@@ -222,4 +222,4 @@ DESCRIPTION
222222
Update a Feature.
223223
```
224224

225-
_See code: [src/commands/features/update.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/features/update.ts)_
225+
_See code: [src/commands/features/update.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.2/src/commands/features/update.ts)_

docs/generate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ DESCRIPTION
4343
Generate Variable Types from the management API
4444
```
4545

46-
_See code: [src/commands/generate/types.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/generate/types.ts)_
46+
_See code: [src/commands/generate/types.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.2/src/commands/generate/types.ts)_

docs/identity.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ DESCRIPTION
3030
Print your DevCycle Identity.
3131
```
3232

33-
_See code: [src/commands/identity/get.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/identity/get.ts)_
33+
_See code: [src/commands/identity/get.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.2/src/commands/identity/get.ts)_
3434

3535
## `dvc identity update`
3636

@@ -59,4 +59,4 @@ DESCRIPTION
5959
Update your DevCycle Identity.
6060
```
6161

62-
_See code: [src/commands/identity/update.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/identity/update.ts)_
62+
_See code: [src/commands/identity/update.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.2/src/commands/identity/update.ts)_

docs/keys.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ EXAMPLES
4040
$ dvc keys get --keys=environment-one,environment-two
4141
```
4242

43-
_See code: [src/commands/keys/get.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/keys/get.ts)_
43+
_See code: [src/commands/keys/get.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.2/src/commands/keys/get.ts)_

docs/login.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ EXAMPLES
3636
$ dvc login again
3737
```
3838

39-
_See code: [src/commands/login/again.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/login/again.ts)_
39+
_See code: [src/commands/login/again.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.2/src/commands/login/again.ts)_
4040

4141
## `dvc login sso`
4242

@@ -65,4 +65,4 @@ DESCRIPTION
6565
Log in through the DevCycle Universal Login. This will open a browser window.
6666
```
6767

68-
_See code: [src/commands/login/sso.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/login/sso.ts)_
68+
_See code: [src/commands/login/sso.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.2/src/commands/login/sso.ts)_

0 commit comments

Comments
 (0)