summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--changelog.md3
-rw-r--r--make/install.lua1
2 files changed, 3 insertions, 1 deletions
diff --git a/changelog.md b/changelog.md
index 90a776ad..6f151566 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,8 @@
# changelog
+## 1.18.0
+* `CHG` `Windows`: dose not provide `ucrt` any more.
+
## 1.17.4
* `FIX` [#437](https://github.com/sumneko/lua-language-server/issues/437) again
* `FIX` [#438](https://github.com/sumneko/lua-language-server/issues/438)
diff --git a/make/install.lua b/make/install.lua
index 1ad0ed06..75556ac1 100644
--- a/make/install.lua
+++ b/make/install.lua
@@ -17,5 +17,4 @@ fs.copy_file(bindir / 'lua'..exe, output / 'lua-language-server'..exe, tru
if platform == 'msvc' then
fs.copy_file(bindir / 'lua54'..dll, output / 'lua54'..dll, true)
require 'msvc'.copy_vcrt('x64', output)
- require 'msvc'.copy_ucrt('x64', output)
end