Skip to content

Commit 48922f2

Browse files
Update release state message to Beta
1 parent 16ca560 commit 48922f2

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

messages/shared.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# label.command-state
22

3-
Developer Preview
3+
Beta
44

55
# warning.command-state
66

src/commands/code-analyzer/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default class ConfigCommand extends SfCommand<void> implements Displayabl
1717
public static readonly description = getMessage(BundleName.ConfigCommand, 'command.description');
1818
public static readonly examples = getMessages(BundleName.ConfigCommand, 'command.examples');
1919

20-
// TODO: Update when we go to Beta and when we go GA
20+
// TODO: Remove when we go GA
2121
public static readonly state = getMessage(BundleName.Shared, 'label.command-state');
2222

2323
public static readonly flags = {
@@ -50,7 +50,7 @@ export default class ConfigCommand extends SfCommand<void> implements Displayabl
5050
};
5151

5252
public async run(): Promise<void> {
53-
// TODO: Update when we go to Beta and when we go GA
53+
// TODO: Remove when we go GA
5454
this.warn(getMessage(BundleName.Shared, "warning.command-state", [getMessage(BundleName.Shared, 'label.command-state')]));
5555

5656
const parsedFlags = (await this.parse(ConfigCommand)).flags;

src/commands/code-analyzer/rules.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default class RulesCommand extends SfCommand<void> implements Displayable
1717
public static readonly description = getMessage(BundleName.RulesCommand, 'command.description');
1818
public static readonly examples = getMessages(BundleName.RulesCommand, 'command.examples');
1919

20-
// TODO: Update when we go to Beta and when we go GA
20+
// TODO: Remove when we go GA
2121
public static readonly state = getMessage(BundleName.Shared, 'label.command-state');
2222

2323
public static readonly flags = {
@@ -52,7 +52,7 @@ export default class RulesCommand extends SfCommand<void> implements Displayable
5252
};
5353

5454
public async run(): Promise<void> {
55-
// TODO: Update when we go to Beta and when we go GA
55+
// TODO: Remove when we go GA
5656
this.warn(getMessage(BundleName.Shared, "warning.command-state", [getMessage(BundleName.Shared, 'label.command-state')]));
5757

5858
const parsedFlags = (await this.parse(RulesCommand)).flags;

src/commands/code-analyzer/run.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default class RunCommand extends SfCommand<void> implements Displayable {
1919
public static readonly description = getMessage(BundleName.RunCommand, 'command.description');
2020
public static readonly examples = getMessages(BundleName.RunCommand, 'command.examples');
2121

22-
// TODO: Update when we go to Beta and when we go GA
22+
// TODO: Remove when we go GA
2323
public static readonly state = getMessage(BundleName.Shared, 'label.command-state');
2424

2525
public static readonly flags = {
@@ -78,7 +78,7 @@ export default class RunCommand extends SfCommand<void> implements Displayable {
7878
};
7979

8080
public async run(): Promise<void> {
81-
// TODO: Update when we go to Beta and when we go GA
81+
// TODO: Remove when we go GA
8282
this.warn(getMessage(BundleName.Shared, "warning.command-state", [getMessage(BundleName.Shared, 'label.command-state')]));
8383

8484
const parsedFlags = (await this.parse(RunCommand)).flags;

0 commit comments

Comments
 (0)