diff --git a/CHANGELOG.md b/CHANGELOG.md index 1af1e9e..eaa28bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,10 @@ # Changelog ## [Unreleased] -- +- + +## 1.0.3 - 2021.09.02 +- Fix typo with clang-10 install ## 1.0.2 - 2021.08.29 ### Changed diff --git a/vagrantfile b/vagrantfile index 0086553..a25b066 100644 --- a/vagrantfile +++ b/vagrantfile @@ -18,10 +18,10 @@ Vagrant.configure(2) do |config| sudo apt-get -y upgrade sudo apt-get install -y virtualbox-guest-utils sudo apt-get install -y emacs - sudo apt-get install -y clang-10.0 + sudo apt-get install -y clang-10 sudo apt-get install -y clang-format-10 sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-10 100 - sudo update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-10.0 100 + sudo update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-10 100 sudo apt-get install -y gdb sudo apt-get install -y lldb-3.8 sudo apt-get install -y valgrind