Skip to content

Commit 1e04f07

Browse files
committed
build: release v2.11
1 parent 012a358 commit 1e04f07

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ There are two installation options for the host app:
6161

6262
If installing on a Developer Edition org, you first need to set up **My Domain** by following [these instructions](https://help.salesforce.com/articleView?id=environment_hub_get_started_my_domain.htm&type=5) and keeping the default login policy.
6363

64-
1. Click [this link](https://login.salesforce.com/packaging/installPackage.apexp?p0=04t5p0000013nkIAAQ) to install the host app package and choose **Install for All Users**.
64+
1. Click [this link](https://login.salesforce.com/packaging/installPackage.apexp?p0=04tJ9000000Y15cIAC) to install the host app package and choose **Install for All Users**.
6565

6666
You'll need to approve access to `https://api.qrserver.com`. We use this library to draw a QR Code.
6767

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sfdx-quiz",
3-
"version": "2.10.1",
3+
"version": "2.11.0",
44
"private": true,
55
"description": "Lightning Web Component Quiz App on a Salesforce Org",
66
"scripts": {

sfdx-project.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55
"default": true,
66
"package": "Quiz",
77
"postInstallScript": "QuizPostInstallScript",
8-
"versionName": "ver 2.10.1",
9-
"versionNumber": "2.10.1.NEXT",
8+
"versionName": "ver 2.11.0",
9+
"versionNumber": "2.11.0.NEXT",
10+
"versionDescription": "Multiplayer quiz app built on Salesforce technology",
1011
"ancestorVersion": "HIGHEST",
1112
"apexTestAccess": {
1213
"permissionSets": ["Quiz_Host"]
@@ -17,7 +18,7 @@
1718
"sfdcLoginUrl": "https://login.salesforce.com",
1819
"sourceApiVersion": "61.0",
1920
"packageAliases": {
20-
"Quiz": "0Ho0N000000KyksSAC",
21-
"Quiz@2.10.0-1": "04t5p0000013nkIAAQ"
21+
"Quiz": "0HoJ9000000KyjGKAS",
22+
"Quiz@2.11.0-1": "04tJ9000000Y15cIAC"
2223
}
2324
}

src/main/default/lwc/gameApp/gameApp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default class GameApp extends LightningElement {
1414
isNextButtonDisabled = true;
1515
currentQuestion;
1616

17-
HOST_APP_VERSION = '2.10.1';
17+
HOST_APP_VERSION = '2.11.0';
1818

1919
@wire(getQuizSettings)
2020
wiredQuizSettings({ error, data }) {

0 commit comments

Comments
 (0)