[release] src/goDeveloperSurvey: fix the prompt text

The survey page shows "Go Developer Survey - January 2024".

Change-Id: I269f99511bd6000155fdc7661267e52db588376a
Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/557435
TryBot-Result: kokoro <noreply+kokoro@google.com>
Commit-Queue: Hyang-Ah Hana Kim <hyangah@gmail.com>
Reviewed-by: Robert Findley <rfindley@google.com>
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ecae037..cdc23aa 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,7 @@
-## v0.40.2 - 22 Jan, 2023
+## v0.40.3 - 22 Jan, 2024
 
 This is a point release to update the upcoming developer survey information
-([the commit history](https://github.com/golang/vscode-go/compare/v0.40.1...v0.40.2)).
+([the commit history](https://github.com/golang/vscode-go/compare/v0.40.1...v0.40.3)).
 
 ## v0.40.1 - 21 Dec, 2023
 
diff --git a/src/goDeveloperSurvey.ts b/src/goDeveloperSurvey.ts
index 9a647ee..07d6610 100644
--- a/src/goDeveloperSurvey.ts
+++ b/src/goDeveloperSurvey.ts
@@ -123,8 +123,8 @@
 
 export async function promptForDeveloperSurvey(cfg: DeveloperSurveyConfig, now: Date): Promise<DeveloperSurveyConfig> {
 	const selected = await vscode.window.showInformationMessage(
-		`"Help shape Go’s future! Would you like to help ensure that Go is meeting your needs
-by participating in this 10-minute Go Developer Survey (2023 H2) before ${endDate.toDateString()}?`,
+		`Help shape Go’s future! Would you like to help ensure that Go is meeting your needs
+by participating in this 10-minute Go Developer Survey (January 2024) before ${endDate.toDateString()}?`,
 		'Yes',
 		'Remind me later',
 		'Never'