Skip to content

Commit

Permalink
chore(release): 3.0.7 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
svc-cli-bot authored and amcaplan committed Oct 12, 2023
1 parent cc63720 commit 3f9a6fe
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [3.0.7](https://github.com/oclif/core/compare/3.0.6...3.0.7) (2023-10-12)


### Bug Fixes

* use _flags for linked v2 plugins ([#820](https://github.com/oclif/core/issues/820)) ([cc63720](https://github.com/oclif/core/commit/cc63720aa90163d28dda9b5fb258ccc0556b6931))



## [3.0.6](https://github.com/oclif/core/compare/3.0.5...3.0.6) (2023-10-11)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@oclif/core",
"description": "base library for oclif CLIs",
"version": "3.0.6",
"version": "3.0.7",
"author": "Salesforce",
"bugs": "https://github.com/oclif/core/issues",
"dependencies": {
Expand Down
1 change: 1 addition & 0 deletions src/util/cache-command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ async function cacheFlags(
deprecateAliases: flag.deprecateAliases,
deprecated: flag.deprecated,
description: flag.description,
env: flag.env,
exclusive: flag.exclusive,
helpGroup: flag.helpGroup,
helpLabel: flag.helpLabel,
Expand Down
7 changes: 7 additions & 0 deletions test/util/cache-command.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ describe('cacheCommand', () => {
char: 'c',
min: 1,
max: 10,
env: 'FLAGC',
required: false,
description: 'flagc desc',
options: ['a', 'b'],
Expand Down Expand Up @@ -77,6 +78,7 @@ describe('cacheCommand', () => {
dependsOn: undefined,
deprecateAliases: undefined,
deprecated: undefined,
env: undefined,
exclusive: undefined,
helpGroup: undefined,
helpLabel: undefined,
Expand All @@ -97,6 +99,7 @@ describe('cacheCommand', () => {
dependsOn: undefined,
deprecateAliases: undefined,
deprecated: undefined,
env: undefined,
exclusive: undefined,
helpGroup: undefined,
helpLabel: undefined,
Expand Down Expand Up @@ -124,6 +127,7 @@ describe('cacheCommand', () => {
deprecateAliases: undefined,
deprecated: undefined,
description: 'flagc desc',
env: 'FLAGC',
exclusive: undefined,
helpGroup: undefined,
helpLabel: undefined,
Expand Down Expand Up @@ -203,6 +207,7 @@ describe('cacheCommand', () => {
char: undefined,
summary: undefined,
description: 'Format output as json.',
env: undefined,
hidden: undefined,
required: undefined,
helpLabel: undefined,
Expand All @@ -223,6 +228,7 @@ describe('cacheCommand', () => {
char: undefined,
summary: undefined,
description: undefined,
env: undefined,
hidden: undefined,
required: undefined,
helpLabel: undefined,
Expand All @@ -243,6 +249,7 @@ describe('cacheCommand', () => {
char: undefined,
summary: undefined,
description: undefined,
env: undefined,
hidden: undefined,
required: undefined,
helpLabel: undefined,
Expand Down

0 comments on commit 3f9a6fe

Please sign in to comment.