Update docs, changelog, and package for 1.1.1

This commit is contained in:
vector-of-bool 2018-07-27 01:44:29 -06:00
Родитель 518f40eded
Коммит 64a3377af5
5 изменённых файлов: 30 добавлений и 4 удалений

Просмотреть файл

@ -1,5 +1,4 @@
.vscode/**
typings/**
out/test/**
test/**
src/**

Просмотреть файл

@ -2,6 +2,13 @@
[See the full changelog in the end-user documentation](https://vector-of-bool.github.io/docs/vscode-cmake-tools/changelog.html).
## 1.1.1
A bugfix release for [these issues](https://github.com/vector-of-bool/vscode-cmake-tools/milestone/12?closed=1).
**BREAKING CHANGE**: Variant substitutions follow a new `${variant:var-key}`
syntax to match the special namespacing of substitutions.
## 1.1.0
1.1.0 includes a few new major features:

Просмотреть файл

@ -3,6 +3,24 @@
Changelog and History
#####################
.. _changes-1.1.1:
1.1.1
*****
Fixes and tweaks upon 1.1.0:
- Fix "Unable to automatically determine compiler" when using VS generators.
- Fix failure to provide IntelliSense information for header files even after
adding them to a target.
- "Unexpected stderr/stdout..." no longer appears. This output is now logged as
regular CMake status messages.
**BREAKING CHANGE**: Variant substitutions follow a new `${variant:var-key}`
syntax to match the special namespacing of substitutions. See :ref:`variant-sub`.
Full list of fixes are in [these issues](https://github.com/vector-of-bool/vscode-cmake-tools/milestone/12?closed=1).
.. _changes-1.1.0:
1.1.0

Просмотреть файл

@ -272,8 +272,10 @@ and ``${env.VARNAME}`` syntax, where the string for the ``VARNAME`` environment
variable will be replaced. If the named environment variable is undefined, an empty
string will be expanded instead.
.. _variant-sub:
Variant Substitution
*********************
********************
Variant options may also be substituted with the ``${variant:VARIANTNAME}`` syntax,
where the name of the currently active choice of the provided ``VARIANTNAME`` variant

Просмотреть файл

@ -2,7 +2,7 @@
"name": "cmake-tools",
"displayName": "CMake Tools",
"description": "Extended CMake support in Visual Studio Code",
"version": "1.1.0",
"version": "1.1.1",
"repository": {
"type": "git",
"url": "https://github.com/vector-of-bool/vscode-cmake-tools"
@ -963,7 +963,7 @@
"postinstall": "node ./node_modules/vscode/bin/install",
"lint": "node ./node_modules/tslint/bin/tslint -p . --fix",
"lint:nofix": "node ./node_modules/tslint/bin/tslint -p .",
"docs": "node ./node_modules/typedoc/bin/typedoc --mode modules --excludeExternals --out build/docs/dev --readme none src/ typings/"
"docs": "node ./node_modules/typedoc/bin/typedoc --mode modules --excludeExternals --out build/docs/dev --readme none src/"
},
"devDependencies": {
"@types/ajv": "^0.0.3",