Skip to content

Commit

Permalink
feat: update default api version to v52.0 (#340) (#341)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiaoyi Chen authored Jun 15, 2021
1 parent 25fc17c commit 67acf89
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "51.5.0",
"version": "52.0.0",
"npmClient": "yarn",
"packages": ["packages/*"]
}
4 changes: 2 additions & 2 deletions packages/plugin-templates/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@salesforce/plugin-templates",
"version": "51.5.0",
"version": "52.0.0",
"main": "index.js",
"author": "Salesforce",
"bugs": "https://github.com/forcedotcom/salesforcedx-templates/issues",
Expand All @@ -10,7 +10,7 @@
"@oclif/errors": "^1",
"@salesforce/command": "^2.2.0",
"@salesforce/core": "2.23.2",
"@salesforce/templates": "51.5.0",
"@salesforce/templates": "52.0.0",
"tslib": "^1",
"yeoman-environment": "2.4.0",
"yeoman-generator": "4.0.1"
Expand Down
2 changes: 1 addition & 1 deletion packages/templates/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@salesforce/templates",
"version": "51.5.0",
"version": "52.0.0",
"description": "Salesforce JS library for templates",
"bugs": "https://github.com/forcedotcom/salesforcedx-templates/issues",
"main": "lib/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/templates/test/generators/sfdxGenerator.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ describe('SfdxGenerator', () => {
assert.calledWith(
doWritingStub,
match({
apiversion: '51.0',
apiversion: '52.0',
outputdir: process.cwd()
})
);
Expand Down
2 changes: 1 addition & 1 deletion packages/templates/test/service/templateService.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ describe('TemplateService', () => {
);
const expectedApexClassMetaContent = `<?xml version="1.0" encoding="UTF-8"?>
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>51.0</apiVersion>
<apiVersion>52.0</apiVersion>
<status>Active</status>
</ApexClass>
`;
Expand Down

0 comments on commit 67acf89

Please sign in to comment.