Skip to content

Commit

Permalink
Merge pull request #7812 from microsoft/main
Browse files Browse the repository at this point in the history
Merge for 1.5.1
  • Loading branch information
sean-mcmanus authored Jul 9, 2021
2 parents 1405554 + bbe5c42 commit 92384bf
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
4 changes: 4 additions & 0 deletions Extension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# C/C++ for Visual Studio Code Change Log

## Version 1.5.1: July 9, 2021
### Bug Fixes
* cppvsdbg Debugging becomes no-op between 1.4.1 and 1.5.0 [#7808](https://github.com/microsoft/vscode-cpptools/issues/7808)

## Version 1.5.0: July 8, 2021
### New Feature
* Add the "Inline macro" code action. [#4183](https://github.com/microsoft/vscode-cpptools/issues/4183)
Expand Down
11 changes: 5 additions & 6 deletions Extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "cpptools",
"displayName": "C/C++",
"description": "C/C++ IntelliSense, debugging, and code browsing.",
"version": "1.5.0-main",
"version": "1.5.1-main",
"publisher": "ms-vscode",
"icon": "LanguageCCPP_color_128x.png",
"readme": "README.md",
Expand Down Expand Up @@ -54,7 +54,6 @@
"id": "cppWelcome",
"title": "Get Started with C++ Development",
"description": "Dive into VS Code's rich C++ development experience.",
"primary": true,
"when": "false",
"steps": [
{
Expand Down Expand Up @@ -3107,7 +3106,7 @@
},
{
"description": "Visual Studio Windows Debugger",
"url": "https://go.microsoft.com/fwlink/?linkid=2167487",
"url": "https://go.microsoft.com/fwlink/?linkid=2167539",
"platforms": [
"win32"
],
Expand All @@ -3118,11 +3117,11 @@
"binaries": [
"./debugAdapters/vsdbg/bin/vsdbg.exe"
],
"integrity": "BACAD3BC69C548FA5CEC0B15109C8628CB45D0F622F1F6C635A23C29B0B042E1"
"integrity": "3E71A1FDD78FBD9FD46ADEE0DF1283349363078B273CAE765978ACF1BA9C2DB1"
},
{
"description": "Visual Studio Windows ARM64 Debugger",
"url": "https://go.microsoft.com/fwlink/?linkid=2167488",
"url": "https://go.microsoft.com/fwlink/?linkid=2167648",
"platforms": [
"win32"
],
Expand All @@ -3132,7 +3131,7 @@
"binaries": [
"./debugAdapters/vsdbg/bin/vsdbg.exe"
],
"integrity": "64325BABDC9B51E7D51111788083BE91C3CC36DEC80145687D9AB6F988F9071F"
"integrity": "698BA3D45B925F998AACE9ED387ADE4927FFE569860408570FD074DD0CD56252"
}
]
}
5 changes: 4 additions & 1 deletion Extension/src/nativeStrings.json
Original file line number Diff line number Diff line change
Expand Up @@ -229,5 +229,8 @@
"invoking_nvcc": "Invoking nvcc with command line: {0}",
"nvcc_host_compile_command_not_found": "Unable to find host compile command in output of nvcc.",
"unable_to_locate_forced_include": "Unable to locate forced include: {0}",
"inline_macro": "Inline macro"
"inline_macro": {
"text": "Inline macro",
"hint": "'Inline' is a command and not an adjective, i.e. like 'Expand macro'."
}
}

0 comments on commit 92384bf

Please sign in to comment.