Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ export enum Version {
v4 = 4, // 4.x.x
v5 = 5, // 5.x.x
v6 = 6, // 6.x.x
latest = v6
v7 = 7, // 7.x.x
latest = v7
}

/**
Expand Down
3 changes: 2 additions & 1 deletion out/api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ export declare enum Version {
v4 = 4,
v5 = 5,
v6 = 6,
latest = 6
v7 = 7,
latest = 7
}
/**
* An interface to allow VS Code extensions to communicate with the C/C++ extension.
Expand Down
3 changes: 2 additions & 1 deletion out/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ var Version;
Version[Version["v4"] = 4] = "v4";
Version[Version["v5"] = 5] = "v5";
Version[Version["v6"] = 6] = "v6";
Version[Version["latest"] = 6] = "latest";
Version[Version["v7"] = 7] = "v7";
Version[Version["latest"] = 7] = "latest";
})(Version = exports.Version || (exports.Version = {}));
/**
* Check if an object satisfies the contract of the CppToolsExtension interface.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vscode-cpptools",
"version": "6.3.0",
"version": "7.0.0",
"description": "Public API for vscode-cpptools",
"typings": "./out/api.d.ts",
"main": "./out/api.js",
Expand Down