aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-05 15:06:34 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-05 15:06:34 -0700
commitfe81139bc0fbac219fa41f0b3103b1ed43aca37d (patch)
tree7fd4acdd3ed29ccc6d816eb56fb214c2cac73ff6
parent846471c8f234e80303a8a945f71b93e1529f6440 (diff)
downloadvcpkg-fe81139bc0fbac219fa41f0b3103b1ed43aca37d.tar.gz
vcpkg-fe81139bc0fbac219fa41f0b3103b1ed43aca37d.zip
Update CHANGELOG and bump version to v0.0.79
-rw-r--r--CHANGELOG.md31
-rw-r--r--ports/cuda/portfile.cmake2
-rw-r--r--toolsrc/VERSION.txt2
3 files changed, 33 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 35e9399e8..789f01152 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,34 @@
+vcpkg (0.0.79)
+--------------
+ * Add ports:
+ - ecm 5.32.0
+ - libgd 2.2.4-1
+ - octomap cefed0c1d79afafa5aeb05273cf1246b093b771c-1
+ * Update ports:
+ - boost 1.63-3 -> 1.63-4
+ - cuda 8.0 -> 8.0-1
+ - freeimage 3.17.0 -> 3.17.0-1
+ - freetype 2.6.3-4 -> 2.6.3-5
+ - glfw3 3.2.1 -> 3.2.1-1
+ - libarchive 3.2.2-2 -> 3.3.1
+ - pqp 1.3 -> 1.3-1
+ - qt5 5.7.1-6 -> 5.7.1-7
+ - sqlite3 3.17.0 -> 3.18.0-1
+ * `vcpkg` has exceeded 200 libraries!
+ * `vcpkg remove` command has been reworked:
+ - `vcpkg remove <pkg>` now uninstalls and deletes the package by default. Previously, this was the behavior of `vpckg remove --purge <pkg>`
+ - `vcpkg remove <pkg> --no-purge` now uninstalls the package without deleting it. Previously, this was the behavior or `vcpkg remove <pkg>`
+ - Added new option `--dry-run`: This will print out the remove plan, but will not actually perform the removal
+ - Added new option `--outdated`: Using `vcpkg remove --outdated` will remove all packages for which updates are available
+ * Add `bootstrap-vcpkg.bat` in the root directory for easier building of `vcpkg`
+ - Also fix a regression with `vcpkg` bootstrapping
+ * Add information about how to use header-only libraries from cmake in [EXAMPLES.md](docs\EXAMPLES.md)
+ * `vcpkg build_external` changed to `vcpkg build-external` (underscore to dash)
+ * Fixes and improvements in existing portfiles and the `vcpkg` tool itself
+
+-- vcpkg team <vcpkg@microsoft.com> WED, 05 Apr 2017 15:00:00 -0800
+
+
vcpkg (0.0.78)
--------------
* Add ports:
diff --git a/ports/cuda/portfile.cmake b/ports/cuda/portfile.cmake
index 348de92f1..ee876ce50 100644
--- a/ports/cuda/portfile.cmake
+++ b/ports/cuda/portfile.cmake
@@ -30,7 +30,7 @@ set(CUDA_REQUIRED_VERSION "V8.0.0")
if (error_code)
message(FATAL_ERROR "Could not find CUDA. Before continuing, please download and install CUDA (${CUDA_REQUIRED_VERSION} or higher) from:"
"\n https://developer.nvidia.com/cuda-downloads\n"
- "\nAlso ensure vcpkg has been rebuilt with the latest version (Mar 5 2017 or later)")
+ "\nAlso ensure vcpkg has been rebuilt with the latest version (v0.0.79 or later)")
endif()
string(REGEX MATCH "V([0-9]+)\\.([0-9]+)\\.([0-9]+)" CUDA_VERSION ${NVCC_OUTPUT})
diff --git a/toolsrc/VERSION.txt b/toolsrc/VERSION.txt
index f017ee228..07683667c 100644
--- a/toolsrc/VERSION.txt
+++ b/toolsrc/VERSION.txt
@@ -1 +1 @@
-"0.0.78" \ No newline at end of file
+"0.0.79" \ No newline at end of file