Skip to content

Commit 26d9bd2

Browse files
author
SF-CLI-BOT
committed
chore(release): 1.2.0 [ci skip]
1 parent 4367c34 commit 26d9bd2

3 files changed

Lines changed: 14 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
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.2.0](https://github.com/salesforcecli/plugin-signups/compare/v1.1.2...v1.2.0) (2022-06-22)
6+
7+
### Features
8+
9+
- use StateAggregator ([e6e3d78](https://github.com/salesforcecli/plugin-signups/commit/e6e3d78e0fc47208260f3dcc9574c6766b853b6c))
10+
511
### [1.1.2](https://github.com/salesforcecli/plugin-signups/compare/v1.1.1...v1.1.2) (2022-05-20)
612

713
### Bug Fixes

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ EXAMPLES
113113
$ sfdx force:org:shape:create -u me@my.org --json --loglevel debug
114114
```
115115

116-
_See code: [src/commands/force/org/shape/create.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.1/src/commands/force/org/shape/create.ts)_
116+
_See code: [src/commands/force/org/shape/create.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.2/src/commands/force/org/shape/create.ts)_
117117

118118
## `sfdx force:org:shape:delete [-p] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
119119

@@ -147,7 +147,7 @@ EXAMPLES
147147
$ sfdx force:org:shape:delete -u me@my.org -p --json > tmp/MyOrgShapeDelete.json
148148
```
149149

150-
_See code: [src/commands/force/org/shape/delete.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.1/src/commands/force/org/shape/delete.ts)_
150+
_See code: [src/commands/force/org/shape/delete.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.2/src/commands/force/org/shape/delete.ts)_
151151

152152
## `sfdx force:org:shape:list [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
153153

@@ -176,7 +176,7 @@ EXAMPLES
176176
$ sfdx force:org:shape:list --json > tmp/MyOrgShapeList.json
177177
```
178178

179-
_See code: [src/commands/force/org/shape/list.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.1/src/commands/force/org/shape/list.ts)_
179+
_See code: [src/commands/force/org/shape/list.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.2/src/commands/force/org/shape/list.ts)_
180180

181181
## `sfdx force:org:snapshot:create -o <string> -n <string> [-d <string>] [-v <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
182182

@@ -222,7 +222,7 @@ EXAMPLES
222222
$ sfdx force:org:snapshot:create -o myuser@myorg -n NightlyBranch -d 'Contains PkgA v2.1.0 and PkgB 3.3.0'
223223
```
224224

225-
_See code: [src/commands/force/org/snapshot/create.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.1/src/commands/force/org/snapshot/create.ts)_
225+
_See code: [src/commands/force/org/snapshot/create.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.2/src/commands/force/org/snapshot/create.ts)_
226226

227227
## `sfdx force:org:snapshot:delete -s <string> [-v <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
228228

@@ -260,7 +260,7 @@ EXAMPLES
260260
$ sfdx force:org:snapshot:delete -s BaseSnapshot -v SnapshotDevHub
261261
```
262262

263-
_See code: [src/commands/force/org/snapshot/delete.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.1/src/commands/force/org/snapshot/delete.ts)_
263+
_See code: [src/commands/force/org/snapshot/delete.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.2/src/commands/force/org/snapshot/delete.ts)_
264264

265265
## `sfdx force:org:snapshot:get -s <string> [-v <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
266266

@@ -301,7 +301,7 @@ EXAMPLES
301301
$ sfdx force:org:snapshot:get -s Dependencies
302302
```
303303

304-
_See code: [src/commands/force/org/snapshot/get.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.1/src/commands/force/org/snapshot/get.ts)_
304+
_See code: [src/commands/force/org/snapshot/get.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.2/src/commands/force/org/snapshot/get.ts)_
305305

306306
## `sfdx force:org:snapshot:list [-v <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
307307

@@ -341,6 +341,6 @@ EXAMPLES
341341
$ sfdx force:org:snapshot:list -v OtherDevHub@example.com
342342
```
343343

344-
_See code: [src/commands/force/org/snapshot/list.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.1/src/commands/force/org/snapshot/list.ts)_
344+
_See code: [src/commands/force/org/snapshot/list.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.2/src/commands/force/org/snapshot/list.ts)_
345345

346346
<!-- commandsstop -->

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@salesforce/plugin-signups",
33
"description": "Commands to interact with org shapes",
4-
"version": "1.1.2",
4+
"version": "1.2.0",
55
"author": "Salesforce",
66
"main": "lib/index.js",
77
"bugs": "https://github.com/forcedotcom/cli/issues",

0 commit comments

Comments
 (0)