Skip to content

Commit bd32fe1

Browse files
author
SF-CLI-BOT
committed
chore(release): 1.0.7 [ci skip]
1 parent f750a3b commit bd32fe1

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [1.0.7](https://github.com/salesforcecli/plugin-source/compare/v1.0.6...v1.0.7) (2021-08-05)
6+
7+
8+
### Bug Fixes
9+
10+
* bump SDR to 4.0.2 ([#169](https://github.com/salesforcecli/plugin-source/issues/169)) ([f750a3b](https://github.com/salesforcecli/plugin-source/commit/f750a3b9e841a9f6fe22e65093cb58886db69d93))
11+
512
### [1.0.6](https://github.com/salesforcecli/plugin-source/compare/v1.0.5...v1.0.6) (2021-07-30)
613

714
### [1.0.5](https://github.com/salesforcecli/plugin-source/compare/v1.0.3...v1.0.5) (2021-07-29)

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ $ npm install -g @salesforce/plugin-source
8080
$ sfdx COMMAND
8181
running command...
8282
$ sfdx (-v|--version|version)
83-
@salesforce/plugin-source/1.0.5 linux-x64 node-v12.22.4
83+
@salesforce/plugin-source/1.0.6 linux-x64 node-v12.22.4
8484
$ sfdx --help [COMMAND]
8585
USAGE
8686
$ sfdx COMMAND
@@ -139,7 +139,7 @@ EXAMPLES
139139
$ sfdx force:source:convert -r path/to/source -d path/to/outputdir -n 'My Package'
140140
```
141141

142-
_See code: [src/commands/force/source/convert.ts](https://github.com/salesforcecli/plugin-source/blob/v1.0.5/src/commands/force/source/convert.ts)_
142+
_See code: [src/commands/force/source/convert.ts](https://github.com/salesforcecli/plugin-source/blob/v1.0.6/src/commands/force/source/convert.ts)_
143143

144144
## `sfdx force:source:deploy [--soapdeploy] [-w <minutes>] [-q <id> | -x <filepath> | -m <array> | -p <array> | -c | -l NoTestRun|RunSpecifiedTests|RunLocalTests|RunAllTestsInOrg | -r <array> | -o | -g] [-u <string>] [--apiversion <string>] [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
145145

@@ -214,7 +214,7 @@ EXAMPLES
214214
$ sfdx force:source:deploy -q 0Af9A00000FTM6pSAH
215215
```
216216

217-
_See code: [src/commands/force/source/deploy.ts](https://github.com/salesforcecli/plugin-source/blob/v1.0.5/src/commands/force/source/deploy.ts)_
217+
_See code: [src/commands/force/source/deploy.ts](https://github.com/salesforcecli/plugin-source/blob/v1.0.6/src/commands/force/source/deploy.ts)_
218218

219219
## `sfdx force:source:deploy:cancel [-w <minutes>] [-i <id>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
220220

@@ -252,7 +252,7 @@ EXAMPLES
252252
$ sfdx force:source:deploy:cancel -i <jobid>
253253
```
254254

255-
_See code: [src/commands/force/source/deploy/cancel.ts](https://github.com/salesforcecli/plugin-source/blob/v1.0.5/src/commands/force/source/deploy/cancel.ts)_
255+
_See code: [src/commands/force/source/deploy/cancel.ts](https://github.com/salesforcecli/plugin-source/blob/v1.0.6/src/commands/force/source/deploy/cancel.ts)_
256256

257257
## `sfdx force:source:deploy:report [-w <minutes>] [-i <id>] [-u <string>] [--apiversion <string>] [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
258258

@@ -297,7 +297,7 @@ EXAMPLES
297297
$ sfdx force:source:deploy:report
298298
```
299299

300-
_See code: [src/commands/force/source/deploy/report.ts](https://github.com/salesforcecli/plugin-source/blob/v1.0.5/src/commands/force/source/deploy/report.ts)_
300+
_See code: [src/commands/force/source/deploy/report.ts](https://github.com/salesforcecli/plugin-source/blob/v1.0.6/src/commands/force/source/deploy/report.ts)_
301301

302302
## `sfdx force:source:open -f <filepath> [-r] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
303303

@@ -339,7 +339,7 @@ EXAMPLES
339339
$ sfdx force:source:open -f path/to/source -u [email protected]
340340
```
341341

342-
_See code: [src/commands/force/source/open.ts](https://github.com/salesforcecli/plugin-source/blob/v1.0.5/src/commands/force/source/open.ts)_
342+
_See code: [src/commands/force/source/open.ts](https://github.com/salesforcecli/plugin-source/blob/v1.0.6/src/commands/force/source/open.ts)_
343343

344344
## `sfdx force:source:retrieve [-p <array> | -x <filepath> | -m <array>] [-w <minutes>] [-n <array>] [-u <string>] [-a <string>] [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
345345

@@ -394,5 +394,5 @@ EXAMPLES
394394
sfdx force:source:retrieve -n MyPackageName -x path/to/package.xml
395395
```
396396

397-
_See code: [src/commands/force/source/retrieve.ts](https://github.com/salesforcecli/plugin-source/blob/v1.0.5/src/commands/force/source/retrieve.ts)_
397+
_See code: [src/commands/force/source/retrieve.ts](https://github.com/salesforcecli/plugin-source/blob/v1.0.6/src/commands/force/source/retrieve.ts)_
398398
<!-- commandsstop -->

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@salesforce/plugin-source",
33
"description": "Commands to interact with source formatted metadata",
4-
"version": "1.0.6",
4+
"version": "1.0.7",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"dependencies": {

0 commit comments

Comments
 (0)