1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
|
vcpkg (0.0.90)
--------------
* Add ports:
- caffe2 0.8.1
- date 2.2
- jsonnet 2017-09-02-11cf9fa9f2fe8acbb14b096316006082564ca580
- kf5plotting 5.37.0
- units 2.3.0
- winpcap 4.1.3-1
* Update ports:
- arrow apache-arrow-0.4.0-2 -> 0.6.0
- benchmark 1.1.0-1 -> 1.2.0
- cppwinrt feb2017_refresh-14393 -> spring_2017_creators_update_for_vs_15.3
- llvm 4.0.0-1 -> 5.0.0-1
- luafilesystem 1.6.3-1 -> 1.7.0.2
- opencv 3.2.0-4 -> 3.3.0-4
- paho-mqtt 1.2.0-1 -> 1.2.0-2
- protobuf 3.4.0-2 -> 3.4.1-1
- qt5 5.8-5 -> 5.8-6
- sfml 2.4.2-1 -> 2.4.2-2
- xlnt 0.9.4-1 -> 1.1.0-1
- zlib 1.2.11-1 -> 1.2.11-2
* Bump required version & auto-downloaded version of `cmake` to 3.9.3 (was 3.9.1). Noteable changes:
- Fix codepage issues
- FindBoost: Add support for Boost 1.65.0 and 1.65.1
* `vcpkg edit`: Fix inspected locations for VSCode
-- vcpkg team <vcpkg@microsoft.com> SUN, 24 Sep 2017 03:30:00 -0800
vcpkg (0.0.89)
--------------
* Update ports:
- boost 1.65-1 -> 1.65.1
- chmlib 0.40 -> 0.40-1
- pybind11 2.1.0-2 -> 2.2.0
- sciter 4.0.2-1 -> 4.0.3
- sqlite3 3.19.1-2 -> 3.20.1
* `vcpkg` now warns if the built version of the `vcpkg.exe` itself is outdated
* Update to latest python 3.5
* `vcpkg install` improvements:
- Add `--keep-going` option to keep going if a package fails to install
- Add elapsed time to each invidial package as well as total time
- Add a counter to the install (e.g. Starting package 3/12: <name>)
* `vcpkg edit` now checks more location for VSCode Insiders
-- vcpkg team <vcpkg@microsoft.com> WED, 14 Sep 2017 16:00:00 -0800
vcpkg (0.0.88)
--------------
* `vcpkg_configure_cmake` has been modified to embed debug symbols within static libraries (using the /Z7 option). Most of the libraries in `vcpkg` had their versions bumped due to this.
* `vcpkg_configure_meson` has been modified in the same manner.
-- vcpkg team <vcpkg@microsoft.com> SAT, 09 Sep 2017 00:30:00 -0800
vcpkg (0.0.87)
--------------
* Add ports:
- console-bridge 0.3.2-1
- leptonica 1.74.4
- tesseract 3.05.01
- urdfdom 1.0.0-1
- urdfdom-headers 1.0.0-1
* Update ports:
- ace 6.4.4 -> 6.4.5
- c-ares 1.12.1-dev-40eb41f-1 -> 1.13.0
- glslang 1c573fbcfba6b3d631008b1babc838501ca925d3-2 -> 3a21c880500eac21cdf79bef5b80f970a55ac6af
- grpc 1.4.1 -> 1.6.0
- libuv 1.14.0 -> 1.14.1
- meschach -> 1.2b
- openblas v0.2.20 -> v0.2.20-1
- openssl 1.0.2l-1 -> 1.0.2l-2
- protobuf 3.3.0-3 -> 3.4.0-1
- qt5 5.8-4 -> 5.8-5
- shaderc 2df47b51d83ad83cbc2e7f8ff2b56776293e8958-1 -> 12fb656ab20ea9aa06e7084a74e5ff832b7ce2da
- spirv-tools 1.1-f72189c249ba143c6a89a4cf1e7d53337b2ddd40 -> v2017.1-dev-7e2d26c77b606b21af839b37fd21381c4a669f23
- xxhash 0.6.2 -> 0.6.3
- zeromq 4.2.2 -> 20170908-18498f620f0f6d4076981ea16eb5760fe4d28dc2
* Add new function `vcpkg_from_bitbucket` which the Bitbucket equivalent of `vcpkg_from_github`
-- vcpkg team <vcpkg@microsoft.com> FRI, 08 Sep 2017 22:00:00 -0800
vcpkg (0.0.86)
--------------
* Add ports:
- bigint 2010.04.30
- butteraugli 2017-09-02-8c60a2aefa19adb
- ccd 2.0.0-1 (Renamed from libccd)
- fadbad 2.1.0
- fcl 0.5.0-1
- guetzli 2017-09-02-cb5e4a86f69628
- gumbo 0.10.1
- libmicrohttpd 0.9.55
- libstemmer 2017-9-02
- libunibreak 4.0
- lodepng 2017-09-01-8a0f16afe74a6a
- meschach
- nlopt 2.4.2-c43afa08d~vcpkg1
- picosha2 2017-09-01-c5ff159b6
- piex 2017-09-01-473434f2dd974978b
- pthreads 2.9.1
- tinythread 1.1
- tinyxml 2.6.2-1
* Removed ports:
- libccd 2.0.0 (Renamed to ccd)
* Update ports:
- ace 6.4.3 -> 6.4.4
- boost 1.65 -> 1.65-1
- cairo 1.15.6 -> 1.15.8
- gdk-pixbuf 2.36.6 -> 2.36.9
- glib 2.52.2 -> 2.52.3
- gtk 3.22.15 -> 3.22.19
- jxrlib 1.1-2 -> 1.1-3
- paho-mqtt Version 1.1.0 (Paho 1.2) -> 1.2.0
- pango 1.40.6 -> 1.40.11
- shaderc 2df47b51d83ad83cbc2e7f8ff2b56776293e8958 -> 2df47b51d83ad83cbc2e7f8ff2b56776293e8958-1
* Fix warnings in bootstrap-vcpkg.ps1
* Fix codepage related issues with ninja/cmake
* Improve handling for non-ascii environments
* Configurations names are now more tolerant:
- If a configuration name is prefixed with "Release", then it is compatible with "Release"
- If a configuration name is prefixed with "Debug", then it is compatible with "Debug"
* `vcpkg edit`: Improve detection of VSCode and add better messages when no path is found
* Fixes and improvements in the `vcpkg` tool itself
-- vcpkg team <vcpkg@microsoft.com> MON, 04 Sep 2017 02:00:00 -0800
vcpkg (0.0.85)
--------------
* Add ports:
- ccfits 2.5
- highfive 1.3
- lzfse 1.0
- pangolin 0.5
- rhash 1.3.5
- speexdsp 1.2rc3-1
- unrar 5.5.8
* Update ports:
- assimp 4.0.0 -> 4.0.0-1
- catch 1.9.7 -> 1.10.0
- ctemplate 2017-06-23-44b7c5b918a08ad561c63e9d28beecb40c10ebca -> 2017-06-23-44b7c5-2
- curl 7.55.0 -> 7.55.1
- ecm 5.32.0 -> 5.37.0
- expat 2.1.1-1 -> 2.2.4-1
- ffmpeg 3.2.4-3 -> 3.3.3
- gl2ps OpenGL to PostScript Printing Library -> 1.4.0
- jsoncpp 1.7.7 -> 1.8.1
- libp7-baical 4.1 -> 4.4-1
- libpng 1.6.31 -> 1.6.32
- libraw 0.18.2-2 -> 0.18.2-3
- libsigcpp 2.10 -> 2.99
- snappy 1.1.6-be6dc3d -> 1.1.7
* `vcpkg edit`: Add new option `--builtrees`; opens editor in buildtrees directory for examining build issues
* Improve Windows SDK support (contract version detection)
* Improve handling for non-ascii environments
* Fixes and improvements in the `vcpkg` tool itself
-- vcpkg team <vcpkg@microsoft.com> SUN, 27 Aug 2017 22:00:00 -0800
vcpkg (0.0.84)
--------------
* Add ports:
- cfitsio 3.410
- chmlib 0.40
- gl2ps OpenGL to PostScript Printing Library
- libharu 2017-08-15-d84867ebf9f-1
- mpfr 3.1.5
- sophus 1.0.0
* Update ports:
- allegro5 5.2.1.0 -> 5.2.2.0
- blaze 3.1 -> 3.2
- boost 1.64-5 -> 1.65
- curl 7.51.0-3 -> 7.55.0
- flann 1.9.1-4 -> 1.9.1-5
- gdal 1.11.3-4 -> 1.11.3-5
- glew 2.0.0-2 -> 2.1.0
- lcms 2.8-1 -> 2.8-2
- libogg 2017-07-27-cab46b19847 -> 1.3.2-cab46b1-2
- libuv 1.13.1 -> 1.14.0
- lz4 1.7.5 -> 1.8.0
- pcre2 10.23 -> 10.30
- spdlog 0.13.0 -> 0.14.0
- zstd 1.3.0 -> 1.3.1
* Bump required version & auto-downloaded version of `git` to 2.14.1 (due to a security vulnerability)
* Show more information when there are issues acquiring `vcpkg` tool dependencies (`git`, `cmake`, `nuget`)
* Remove download prompts for cmake/git. The prompts were causing a lot of issues for users and especially CI builds
* `vcpkg edit`: Fix detection of 64-bit VSCode
* Fixes and improvements in the `vcpkg` tool itself
-- vcpkg team <vcpkg@microsoft.com> TUE, 22 Aug 2017 13:00:00 -0800
vcpkg (0.0.83)
--------------
* Add ports:
- fuzzylite 6.0
- jemalloc 4.3.1-1
- libkml 1.3.0
- pcl 1.8.1
- plog 1.1.3
* Update ports:
- catch 1.9.6 -> 1.9.7
- ceres 1.12.0-4 -> 1.13.0
- cpp-redis 3.5.2 -> 3.5.2-1
- gdal 1.11.3-3 -> 1.11.3-4
- graphicsmagick 1.3.26 -> 1.3.26-1
- hypre 2.11.1 -> 2.11.2
- libtheora 1.1.1 -> 1.2.0alpha1-20170719~vcpkg1
- minizip 1.2.11 -> 1.2.11-1
- openblas v0.2.19-2 -> v0.2.20
- openjpeg 2.1.2-2 -> 2.2.0
- physfs 2.0.3 -> 2.0.3-1
- stb 1.0 -> 20170724-9d9f75e
- uwebsockets 0.14.3 -> 0.14.4
- vtk 7.1.1-1 -> 8.0.0-1
- yaml-cpp 0.5.4 candidate -> 0.5.4-rc-1
* Bump required version & auto-downloaded version of `cmake` to 3.9.1 (was 3.9.0)
* Fixes and improvements in the `vcpkg` tool itself
-- vcpkg team <vcpkg@microsoft.com> FRI, 11 Aug 2017 12:00:00 -0800
vcpkg (0.0.82)
--------------
* Add ports:
- alembic 1.7.1-3
- allegro5 5.2.1.0
- angle 2017-06-14-8d471f-1
- apr-util 1.6.0
- arrow apache-arrow-0.4.0-1
- aubio 0.46~alpha-2
- aurora 2017-06-21-c75699d2a8caa726260c29b6d7a0fd35f8f28933
- benchmark 1.1.0
- blaze 3.1
- brotli 0.6.0
- c-ares 1.12.1-dev-40eb41f-1
- ceres 1.12.0-4
- clara 2017-07-20-9661f2b4a50895d52ebb4c59382785a2b416c310
- corrade jun2017-2
- cpp-redis 3.5.2
- cppcms 1.1.0
- cppunit 1.13.2
- cpr 1.3.0
- ctemplate 2017-06-23-44b7c5b918a08ad561c63e9d28beecb40c10ebca
- cunit 2.1.3-1
- cxxopts 1.3.0
- dirent 2017-06-23-5c7194c2fe2c68c1a8212712c0b4b6195382d27d
- draco 0.10.0
- duktape 2.0.3-3
- embree 2.16.4-1
- evpp 0.6.1
- flann 1.9.1-4
- folly v2017.07.17.01
- g2o 20170730_git-1
- geogram 1.4.9
- gsl-lite 0.24.0
- hpx 1.0.0-4
- hunspell 1.6.1-1
- hwloc 1.11.7-1
- hypre 2.11.1
- ilmbase 2.2.0
- jansson v2.10
- jasper 2.0.13
- kinectsdk1 1.8-1
- libconfig 1.6.0
- libmikmod 3.3.11.1
- libopusenc 0.1
- libssh 0.7.5
- libtorrent 1.1.4
- libusb 1.0.21-fc99620
- libusb-win32 1.2.6.0
- libzip 1.2.0-1
- live555 2017.06.04
- llvm 4.0.0
- lpeg 1.0.1-2
- luafilesystem 1.6.3
- luajit 2.0.5
- magnum jun2017-5
- magnum-plugins jun2017-4
- matio 1.5.10-1
- minizip 1.2.11
- msinttypes 2017-06-26-f9e7c5758ed9e3b9f4b2394de1881c704dd79de0
- nuklear 2017-06-15-5c7194c2fe2c68c1a8212712c0b4b6195382d27d
- ode 0.15.1
- openexr 2.2.0
- openimageio 1.7.15
- openni2 2.2.0.33
- opusfile 0.9
- osg 3.5.6
- paho-mqtt Version 1.1.0 (Paho 1.2)
- plibsys 0.0.3
- podofo 0.9.5
- ptex 2.1.28
- pystring 1.1.3
- python3 3.6.1
- qhull 2015.2
- qscintilla 2.10-1
- redshell 1.0.0
- rocksdb 2017-06-28-18c63af6ef2b9f014c404b88488ae52e6fead03c
- rtmidi 2.1.1-1
- rttr 0.9.5
- sciter 4.0.2-1
- sdl2-gfx 1.0.3-1
- snappy 1.1.6-be6dc3d
- sobjectizer 5.5.19.2
- speex 1.2.0
- strtk 2017.01.02-1e2960f
- suitesparse 4.5.5-2
- sundials 2.7.0
- tacopie 2.4.1-1
- theia 0.7-d15154a
- thor v2.0
- thrift 20172805-72ca60debae1d9fb35d9f0085118873669006d7f
- uriparser 0.8.4
- utf8proc 2.1.0
- utfz 1.2
- wxwidgets 3.1.0-1
* Update ports:
- apr 1.5.2 -> 1.6.2
- assimp 3.3.1 -> 4.0.0
- beast 1.0.0-b30 -> v84-1
- bond 5.3.1 -> 6.0.0
- boost 1.64-2 -> 1.64-5
- bzip2 1.0.6 -> 1.0.6-1
- cairo 1.15.4 -> 1.15.6
- catch 1.9.1 -> 1.9.6
- cereal 1.2.1 -> 1.2.2
- chakracore 1.4.0 -> 1.4.3
- dimcli 1.0.3 -> 2.0.0
- dlfcn-win32 1.1.0 -> 1.1.1
- dlib 19.4-1 -> 19.4-4
- doctest 1.1.0 -> 1.2.0
- double-conversion 2.0.1 -> 3.0.0
- eigen3 3.3.3 -> 3.3.4
- expat 2.1.1 -> 2.1.1-1
- ffmpeg 3.2.4-2 -> 3.2.4-3
- fftw3 3.3.6-p11 -> 3.3.6-p12
- flatbuffers 1.6.0 -> 1.7.1
- fltk 1.3.4-2 -> 1.3.4-4
- fmt 3.0.1-4 -> 4.0.0
- fontconfig 2.12.1 -> 2.12.4
- freeglut 3.0.0 -> 3.0.0-1
- freeimage 3.17.0-1 -> 3.17.0-2
- freerdp 2.0.0-beta1+android11 -> 2.0.0-rc0~vcpkg1
- freetype 2.6.3-5 -> 2.8
- gdcm2 2.6.7 -> 2.6.8
- gettext 0.19 -> 0.19-1
- gflags 2.2.0-2 -> 2.2.0-4
- glew 2.0.0-1 -> 2.0.0-2
- gli 0.8.2 -> 0.8.2-1
- glib 2.52.1 -> 2.52.2
- glm 0.9.8.1 -> 0.9.8.4
- glog 0.3.4-0472b91-1 -> 0.3.5
- glslang 1c573fbcfba6b3d631008b1babc838501ca925d3-1 -> 1c573fbcfba6b3d631008b1babc838501ca925d3-2
- graphicsmagick 1.3.25 -> 1.3.26
- grpc 1.2.3 -> 1.4.1
- gsl 2.3 -> 2.4-1
- gtk 3.22.11 -> 3.22.15
- harfbuzz 1.4.6 -> 1.4.6-1
- lcms 2.8 -> 2.8-1
- libarchive 3.3.1 -> 3.3.2
- libbson 1.6.2 -> 1.6.2-1
- libepoxy 1.4.1-7d58fd3 -> 1.4.3
- libevent 2.1.8-1 -> 2.1.8-2
- libgd 2.2.4-1 -> 2.2.4-2
- libjpeg-turbo 1.5.1-1 -> 1.5.2
- libogg 1.3.2 -> 2017-07-27-cab46b19847
- libpng 1.6.28-1 -> 1.6.31
- libraw 0.18.0-1 -> 0.18.2-2
- libuv 1.10.1-2 -> 1.13.1
- log4cplus 1.1.3-RC7 -> REL_1_2_1-RC2
- lzo 2.09 -> 2.10-1
- msgpack 2.1.1 -> 2.1.5
- msmpi 8.0-1 -> 8.1
- nana 1.4.1-66be23c9204c5567d1c51e6f57ba23bffa517a7c -> 1.5.4
- openal-soft 1.17.2 -> 1.18.1
- openblas v0.2.19-1 -> v0.2.19-2
- opencv 3.2.0-1 -> 3.2.0-3
- openjpeg 2.1.2-1 -> 2.1.2-2
- openssl 1.0.2k-2 -> 1.0.2l-1
- openvr 1.0.5 -> 1.0.9
- opus 1.1.4 -> 1.2.1
- pango 1.40.5-1 -> 1.40.6
- pcre 8.40 -> 8.41
- pdcurses 3.4 -> 3.4-1
- portaudio 19.0.6.00 -> 19.0.6.00-1
- protobuf 3.2.0 -> 3.3.0-3
- pybind11 2.1.0 -> 2.1.0-1
- qt5 5.8-1 -> 5.8-4
- qwt 6.1.3-1 -> 6.1.3-2
- ragel 6.9 -> 6.10
- range-v3 20150729-vcpkg3 -> 20151130-vcpkg4
- rxcpp 3.0.0 -> 4.0.0-1
- sdl2 2.0.5-2 -> 2.0.5-3
- sdl2-image 2.0.1 -> 2.0.1-1
- sdl2-mixer 2.0.1 -> 2.0.1-1
- sdl2-net 2.0.1 -> 2.0.1-1
- sdl2-ttf 2.0.14 -> 2.0.14-1
- smpeg2 2.0.0 -> 2.0.0-1
- spdlog 0.12.0 -> 0.13.0
- sqlite3 3.18.0-1 -> 3.19.1-1
- taglib 1.11.1-1 -> 1.11.1-3
- tbb 20160916 -> 2017_U7
- think-cell-range e2d3018 -> 498839d
- tiff 4.0.7-1 -> 4.0.8
- tinyxml2 3.0.0 -> 5.0.1
- utfcpp 2.3.4 -> 2.3.5
- uwebsockets 0.14.2 -> 0.14.3
- vtk 7.1.0 -> 7.1.1-1
- wt 3.3.7 -> 3.3.7-1
- zstd 1.1.1 -> 1.3.0
* `vcpkg` has exceeded 300 libraries!
* Add the following options to `vcpkg export` command: `--nuget-id`, `--nuget-version`
* Improve `vcpkg help`:
- Improve clarity
- Add `vcpkg help <topic>` option (example: `vcpkg help export`)
- Add `vcpkg help topics` option
* `vcpkg search` now also searches in the description of ports
* Documentation has been reworked and is now also available in ReadTheDocs: https://vcpkg.readthedocs.io/
* Bump required version & auto-downloaded version of `cmake` to 3.9.0 (was 3.8.0)
* Bump required version & auto-downloaded version of `nuget` to 4.1.0 (was 3.5.0)
* Huge number of fixes and improvements in the `vcpkg` tool
-- vcpkg team <vcpkg@microsoft.com> MON, 07 Aug 2017 16:00:00 -0800
vcpkg (0.0.81)
--------------
* Add ports:
- atlmfc 0
- giflib 5.1.4
- graphicsmagick 1.3.25
- libmad 0.15.1
- libsndfile libsndfile-1.0.29-6830c42
- ms-gsl 20170425-8b320e3f5d016f953e55dfc7ec8694c1349d3fe4 (**see below)
- taglib 1.11.1-1
- xalan-c 1.11-1
* Update ports:
- ace 6.4.2 -> 6.4.3
- bond 5.2.0 -> 5.3.1
- boost 1.63-4 -> 1.64-2
- cppzmq 0.0.0-1 -> 4.2.1
- gdal 1.11.3-1 -> 1.11.3-3
- gdk-pixbuf 2.36.5 -> 2.36.6
- grpc 1.1.2-1 -> 1.2.3
- gsl 0-fd5ad87bf -> 2.3 (**see below)
- harfbuzz 1.3.4-2 -> 1.4.6
- icu 58.2-1 -> 59.1-1
- libflac 1.3.2-1 -> 1.3.2-2
- libmodplug 0.8.8.5-bb25b05 -> 0.8.9.0
- pango 1.40.4 -> 1.40.5-1
- pcre 8.38-1 -> 8.40
- poco 1.7.6-4 -> 1.7.8
- qt5 5.7.1-7 -> 5.8-1
- wt 3.3.6-3 -> 3.3.7
* The Guidelines Support Library has been renamed from`gsl` to `ms-gsl`. The GNU Scientific Library has been added as `gsl`.
* Introducing `vcpkg export` command:
- Exports one or more installed packages along with their dependencies
- Options for target format: --nuget --7zip --zip --raw (can specify more than one)
- Option `--dry-run`: This will print out the export plan, but will not actually perform the export
- More information and examples [here](https://blogs.msdn.microsoft.com/vcblog/2017/05/03/vcpkg-introducing-export-command/).
* Add `--head` option for `vcpkg install`. It only applies to github-based project and allows you to use the latest master commit
- For example: `./vcpkg install cpprestsdk:x64-windows --head` will build cpprestsdk from the latest master commit instead of version 2.9.0 specified in the `CONTROL` file
* Bump auto-downloaded version of `cmake` to 3.8.0 (was 3.8.0rc1)
* `--options` are now case-insensitive
* `vcpkg` now uses `clang-format`
* Fixes and improvements in the `vcpkg` tool
-- vcpkg team <vcpkg@microsoft.com> WED, 03 May 2017 18:00:00 -0800
vcpkg (0.0.80)
--------------
* Add ports:
- clapack 3.2.1
- geographiclib 1.47-patch1-3
- libevent 2.1.8-1
- mdnsresponder 765.30.11
- openblas v0.2.19-1
- picojson 1.3.0
- sdl2-mixer 2.0.1
- sdl2-net 2.0.1
- sdl2-ttf 2.0.14
* Update ports:
- azure-storage-cpp 3.0.0 -> 3.0.0-2
- catch 1.8.2 -> 1.9.1
- eigen3 3.3.0 -> 3.3.3
- glib 2.50.3 -> 2.52.1
- libbson 1.5.1 -> 1.6.2
- libpng 1.6.28 -> 1.6.28-1
- libvorbis 1.3.5-1-143caf4023a90c09a5eb685fdd46fb9b9c36b1ee -> 1.3.5-143caf4-2
- libxml2 2.9.4 -> 2.9.4-1
- mongo-c-driver 1.5.1 -> 1.6.2
- mongo-cxx-driver 3.0.3-1 -> 3.1.1
- opencv 3.2.0 -> 3.2.0-1
- qwt 6.1.3 -> 6.1.3-1
- uwebsockets 0.14.1 -> 0.14.2
- xerces-c 3.1.4 -> 3.1.4-3
* Added `System32\Wbem` to the sanizited environment
* `--debug` flag will now show environment information when launching external commands
* `vcpkg install` command has been enhanced:
- When a package build starts or ends, a message with the package name is diplayed
- Before the start of the build, a summary of the install plan is displayed
- Added new option `--dry-run`: This will print out the install plan, but will not actually perform the install
* Add CI badge in the front page
* Fix WindowsSDK detection to correctly handle the new optional c++ desktop deployment of the Windows SDK.
* Reduce verbosity of `vcpkg remove` when purging the package
* Fixes and improvements in the `vcpkg` tool itself
-- vcpkg team <vcpkg@microsoft.com> WED, 18 Apr 2017 18:00:00 -0800
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:
- libp7-baical 4.1
- pybind11 2.1.0
- xxhash 0.6.2
* Update ports:
- catch 1.8.1 -> 1.8.2
- glog 0.3.4-0472b91 -> 0.3.4-0472b91-1
- libuv 1.10.1 -> 1.10.1-2
- libwebp 0.5.1-1 -> 0.6.0-1
- range-v3 20150729-vcpkg2 -> 20150729-vcpkg3
- tiff 4.0.6-2 -> 4.0.7
- uwebsockets 0.13.0-1 -> 0.14.1
* `--debug` flag enhanced to give line information on any exit. Applies to any `vcpkg` command
* Improve error messages when requesting a portfile that does not exist (for example via command line or via dependencies)
* Add `EMPTY_INCLUDE_FOLDER` policy
* Fixes and improvements in existing portfiles and the `vcpkg` tool itself
-- vcpkg team <vcpkg@microsoft.com> TUE, 28 Mar 2017 21:15:00 -0800
vcpkg (0.0.77)
--------------
* Add ports:
- beast 1.0.0-b30
- botan 2.0.1
- cairomm 1.15.3-1
- dlfcn-win32 1.1.0
- freerdp 2.0.0-beta1+android11
- gdcm2 2.6.7
- jbigkit 2.1
- libpopt 1.16-10~vcpkg1
- libvpx 1.6.1-1
- libwebm 1.0.0.27-1
- msgpack 2.1.1
- nlohmann-json 2.1.1
- pcre2 10.23
- tinyexr v0.9.5-d16ea6
- xlnt 0.9.4
* Update ports:
- antlr4 4.6 -> 4.6-1
- atk 2.22.0 -> 2.24.0
- boost 1.63-2 -> 1.63-3
- dlib 19.2 -> 19.4-1
- glib 2.50.2 -> 2.50.3
- gtk 3.22.8 -> 3.22.11
- libepoxy 1.4.0-2432daf-1 -> 1.4.1-7d58fd3
- libjpeg-turbo 1.4.90-1 -> 1.5.1-1
- liblzma 5.2.3 -> 5.2.3-1
- mpg123 1.23.3 -> 1.24.0-1
- mpir 2.7.2-1 -> 3.0.0-2
- pango 1.40.3 -> 1.40.4
- qt5 5.7.1-5 -> 5.7.1-6
- uwebsockets 0.12.0 -> 0.13.0-1
* Improvements and fixes in the sanizited environment introduced in the previous version
* `--debug` flag now gives line information when an error occurs. Applies to any `vcpkg` command
* Fixes and improvements around launching powershell scripts
- Correct handling of spaces in the path
- Ignore user profile (-NoProfile)
* `openssl`: Enable building in paths with space and ignore installed versions in `C:/OpenSSL/`
* Fixes and improvements in existing portfiles and the `vcpkg` tool itself
-- vcpkg team <vcpkg@microsoft.com> WED, 22 Mar 2017 15:30:00 -0800
vcpkg (0.0.76)
--------------
* Add ports:
- ffmpeg 3.2.4-2
- fftw3 3.3.6-p11
- flatbuffers 1.6.0
- netcdf-c 4.4.1.1-1
- netcdf-cxx4 4.3.0
- portaudio 19.0.6.00
- vtk 7.1.0
* Update ports:
- azure-storage-cpp 2.6.0 -> 3.0.0
- boost 1.63 -> 1.63-2
- bullet3 2.83.7.98d4780 -> 2.86.1
- catch 1.5.7 -> 1.8.1
- cppwinrt 1.010.0.14393.0 -> feb2017_refresh-14393
- hdf5 1.8.18 -> 1.10.0-patch1-1
- libflac 1.3.2 -> 1.3.2-1
- libpng 1.6.24-1 -> 1.6.28
- lua 5.3.3-2 -> 5.3.4
- msmpi 8.0 -> 8.0-1
- openjpeg 2.1.2 -> 2.1.2-1
- poco 1.7.6-3 -> 1.7.6-4
- szip 2.1 -> 2.1-1
- zeromq 4.2.0 -> 4.2.2
* `vcpkg` now launches external commands (most notably builds) in a sanitized environment
* Better proxy handling when fetching dependencies (cmake/git/nuget)
* Fix more VS2017 issues
* Fixes and improvements in existing portfiles and the `vcpkg` tool itself
-- vcpkg team <vcpkg@microsoft.com> MON, 10 Mar 2017 17:45:00 -0800
vcpkg (0.0.75)
--------------
* Add ports:
- dlib 19.2
- gtk 3.22.8
- pqp 1.3
- pugixml 1.8.1
* Update ports:
- clockutils 1.1.1 -> 1.1.1-3651f232c27074c4ceead169e223edf5f00247c5
- grpc 1.1.0-dev-1674f65-2 -> 1.1.2-1
- libflac 1.3.1-1 -> 1.3.2
- liblzma 5.2.2 -> 5.2.3
- libmysql 5.7.17 -> 5.7.17-1
- lz4 1.7.4.2 -> 1.7.5
- mongo-cxx-driver 3.0.3 -> 3.0.3-1
- nana 1.4.1 -> 1.4.1-66be23c9204c5567d1c51e6f57ba23bffa517a7c
- opengl 10.0.10240.0 -> 0.0-3
- protobuf 3.0.2 -> 3.2.0
- qt5 5.7.1-2 -> 5.7.1-5
- spdlog 0.11.0 -> 0.12.0
* Numerous improvements in Visual Studio, MSBuild and Windows SDK auto-detection
* `vcpkg integrate install` now outputs the specific toolchain file to use for CMake integration
* All commands now checks for `--options` and will issue an error on unknown options.
- Previously only commands with options would do this (for example `vcpkg remove --purge <pkg>`) and commands with no options would ignore them, for example `vcpkg install --purge <pkg>`
* Update version of the automatically acquired JOM, python
- Also, for python: automatically acquire the 32-bit versions instead of the 64-bit ones
* Fixes and improvements in existing portfiles and the `vcpkg` tool itself
-- vcpkg team <vcpkg@microsoft.com> MON, 27 Feb 2017 14:00:00 -0800
vcpkg (0.0.74)
--------------
* Bump required version & auto-downloaded version of `cmake` to 3.8.0 (was 3.7.x). This fixes UWP builds with Visual Studio 2017
* Fix `vcpkg build` not printing out the missing dependencies on fail
* Fixes and improvements in the `vcpkg` tool itself
-- vcpkg team <vcpkg@microsoft.com> THU, 16 Feb 2017 18:15:00 -0800
vcpkg (0.0.73)
--------------
* Add ports:
- gdk-pixbuf 2.36.5
- openvr 1.0.5
* Update ports:
- lmdb 0.9.18-1 -> 0.9.18-2
- opencv 3.1.0-1 -> 3.2.0
- sqlite3 3.15.0 -> 3.17.0
* Add functions to correctly find the "Program Files" folders in all parts of `vcpkg` (C++, CMake, powershell)
* Flush std::cout before launching an external process. Fixes issues when redirecting std::cout to a file
* Update version of the automatically acquired nasm. Resolves build failure with libjpeg-turbo
* Change the format of the listfile. The file is now sorted and directories now have a trailing slash so they can easily be identified.
- Old listfiles will be automatically updated on first access. This will happen to all old listfiles when a new package is installed (`vcpkg install`) or after a call to `vcpkg owns`.
* Fixes and improvements in existing portfiles and the `vcpkg` tool itself
-- vcpkg team <vcpkg@microsoft.com> WED, 15 Feb 2017 19:30:00 -0800
vcpkg (0.0.72)
--------------
* Add ports:
- cuda 8.0
- hdf5 1.8.18
- lcms 2.8
- libepoxy 1.4.0-2432daf-1
- libnice 0.1.13
- msmpi 8.0
- parmetis 4.0.3
- sqlite-modern-cpp 2.4
- websocketpp 0.7.0
* Update ports:
- asio 1.10.6 -> 1.10.8
- aws-sdk-cpp 1.0.47 -> 1.0.61
- bond 5.0.0-4-g53ea136 -> 5.2.0
- cpprestsdk 2.9.0-1 -> 2.9.0-2
- fmt 3.0.1-1 -> 3.0.1-4
- grpc 1.1.0-dev-1674f65-1 -> 1.1.0-dev-1674f65-2
- libraw 0.17.2-2 -> 0.18.0-1
- libvorbis 1.3.5-143caf4023a90c09a5eb685fdd46fb9b9c36b1ee -> 1.3.5-1-143caf4023a90c09a5eb685fdd46fb9b9c36b1ee
- poco 1.7.6-2 -> 1.7.6-3
- rapidjson 1.0.2-1 -> 1.1.0
- sfml 2.4.1 -> 2.4.2
- wt 3.3.6-2 -> 3.3.6-3
* Introduce Build Policies:
- Packages with special characteristics (e.g. CUDA) can now use Build Policies to control which post-build checks apply to them.
* Improve support for Visual Studio 2017
- Add auto-detection for Windows SDK
- Fixed various issues with `bootstrap.ps1` and VS2017 support
* Automatic acquisition of perl now uses the 32-bit version isntead of the 64-bit version
* Fix `vcpkg remove --purge` not applying to non-installed packages
* Fixes and improvements in existing portfiles and the `vcpkg` tool itself
-- vcpkg team <vcpkg@microsoft.com> TUE, 14 Feb 2017 11:30:00 -0800
vcpkg (0.0.71)
--------------
* Add ports:
- atk 2.22.0
- fontconfig 2.12.1
- opus 1.1.4
- pango 1.40.3
- xerces-c 3.1.4
* Update ports:
- boost 1.62-11 -> 1.63
- cairo 1.14.6 -> 1.15.4
- directxtk dec2016 -> dec2016-1
- fltk 1.3.4-1 -> 1.3.4-2
- gdal 1.11.3 -> 1.11.3-1
- harfbuzz 1.3.4 -> 1.3.4-2
- libarchive 3.2.2 -> 3.2.2-2
- libmariadb 2.3.1 -> 2.3.2
- mpir 2.7.2 -> 2.7.2-1
- openssl 1.0.2j-2 -> 1.0.2k-2
- wt 3.3.6 -> 3.3.6-2
* Improve `vcpkg remove`:
- Now shows all dependencies that need to be removed instead of just the immediate dependencies
- Add `--recurse` option that removes all dependencies
- Improve messages
* Improve support for Visual Studio 2017
- Better VS2017 detection
- Fixed various issues with `bootstrap.ps1` and VS2017 support
* Fix `vcpkg_copy_pdbs()` under non-English locale
* Notable changes for buiding the `vcpkg` tool:
- Restructure `vcpkg` project hierarchy. Now only has 4 projects (down from 6). Most of the code now lives under vcpkglib.vcxproj
- Enable multiprocessor compilation
- Disable MinimalRebuild
- Use precompiled headers
* Fixes and improvements in existing portfiles and the `vcpkg` tool itself
-- vcpkg team <vcpkg@microsoft.com> MON, 30 Jan 2017 23:00:00 -0800
vcpkg (0.0.70)
--------------
* Add ports:
- fltk 1.3.4-1
- glib 2.50.2
- lzo 2.09
- uvatlas sept2016
* Update ports:
- dx 1.0.0 -> 1.0.1
- libmysql 5.7.16 -> 5.7.17
* Add support for Visual Studio 2017
- Previously, you could use Visual Studio 2017 for your own application and `vcpkg` integration would work, but you needed to have Visual Studio 2015 to build `vcpkg` itself as well as the libraries. This requirement has now been removed
- If both Visual Studio 2015 and Visual Studio 2017 are installed, Visual Studio 2017 tools will be preferred over those of Visual Studio 2015
* Bump required version & auto-downloaded version of `cmake` to 3.7.2 (was 3.5.x), which includes generators for Visual Studio 2017
* Bump auto-downloaded version of `nuget` to 3.5.0 (was 3.4.3)
* Bump auto-downloaded version of `git` to 2.11.0 (was 2.8.3)
* Fixes and improvements in existing portfiles and the `vcpkg` tool itself
-- vcpkg team <vcpkg@microsoft.com> MON, 23 Jan 2017 19:50:00 -0800
vcpkg (0.0.67)
--------------
* Add ports:
- cereal 1.2.1
- directxmesh oct2016
- directxtex dec2016
- metis 5.1.0
- sdl2-image 2.0.1
- szip 2.1
* Update ports:
- ace 6.4.0 -> 6.4.2
- boost 1.62-9 -> 1.62-11
- curl 7.51.0-2 -> 7.51.0-3
- directxtk oct2016-1 -> dec2016
- directxtk12 oct2016 -> dec2016
- freetype 2.6.3-3 -> 2.6.3-4
- glew 2.0.0 -> 2.0.0-1
- grpc 1.1.0-dev-1674f65 -> 1.1.0-dev-1674f65-1
- http-parser 2.7.1 -> 2.7.1-1
- libssh2 1.8.0 -> 1.8.0-1
- libwebsockets 2.0.0 -> 2.0.0-1
- openssl 1.0.2j-1 -> 1.0.2j-2
- tiff 4.0.6-1 -> 4.0.6-2
- zlib 1.2.10 -> 1.2.11
* Add 7z to `vcpkg_find_acquire_program.cmake`
* Enhance `vcpkg_build_cmake.cmake` and `vcpkg_install_cmake.cmake`:
- Add option to disable parallel building (it is enabled by default)
- Add option to use the 64-bit toolset (for the 32-bit builds; output binaries are still 32-bit)
* Fix bug in `applocal.ps1` that would infinitely recurse when there were no depenndencies
* Fixes and improvements in existing portfiles and the `vcpkg` tool itself
-- vcpkg team <vcpkg@microsoft.com> WED, 18 Jan 2017 13:45:00 -0800
vcpkg (0.0.66)
--------------
* Add ports:
- antlr4 4.6
- bzip2 1.0.6
- dx 1.0.0
- gli 0.8.2
- libarchive 3.2.2
- libffi 3.1
- liblzma 5.2.2
- libmodplug 0.8.8.5-bb25b05
- libsigcpp 2.10
- lmdb 0.9.18-1
- lz4 1.7.4.2
- ogre 1.9.0
- qwt 6.1.3
- smpeg2 2.0.0
- spirv-tools 1.1-f72189c249ba143c6a89a4cf1e7d53337b2ddd40
* Update ports:
- aws-sdk-cpp 1.0.34-1 -> 1.0.47
- azure-storage-cpp 2.5.0 -> 2.6.0
- boost 1.62-8 -> 1.62-9
- chakracore 1.3.1 -> 1.4.0
- freetype 2.6.3-2 -> 2.6.3-3
- icu 58.1 -> 58.2-1
- libbson 1.5.0-rc6 -> 1.5.1
- libvorbis -> 1.3.5-143caf4023a90c09a5eb685fdd46fb9b9c36b1ee
- lua 5.3.3-1 -> 5.3.3-2
- mongo-c-driver 1.5.0-rc6 -> 1.5.1
- pixman 0.34.0 -> 0.34.0-1
- qt5 5.7-1 -> 5.7.1-2
- sdl2 2.0.5 -> 2.0.5-2
- zlib 1.2.8 -> 1.2.10
* Improvements in pre-install checks:
- Refactor file-exists-check. Improved clarity and performance.
* Fixes and improvements in existing portfiles and the `vcpkg` tool itself
-- vcpkg team <vcpkg@microsoft.com> TUE, 10 Jan 2017 17:15:00 -0800
vcpkg (0.0.65)
--------------
* Add ports:
- anax 2.1.0-1
- aws-sdk-cpp 1.0.34-1
- azure-storage-cpp 2.5.0
- charls 2.0.0
- dimcli 1.0.3
- entityx 1.2.0
- freeimage 3.17.0
- gdal 1.11.3
- globjects 1.0.0
- http-parser 2.7.1
- icu 58.1
- libflac 1.3.1-1
- libssh2 1.8.0
- nana 1.4.1
- qca 2.2.0
- sfml 2.4.1
- shaderc 2df47b51d83ad83cbc2e7f8ff2b56776293e8958
- uwebsockets 0.12.0
- yaml-cpp 0.5.4 candidate
* Update ports:
- boost 1.62-6 -> 1.62-8
- curl 7.51.0-1 -> 7.51.0-2
- gflags 2.1.2 -> 2.2.0-2
- glbinding 2.1.1 -> 2.1.1-1
- glslang 1c573fbcfba6b3d631008b1babc838501ca925d3 -> 1c573fbcfba6b3d631008b1babc838501ca925d3-1
- harfbuzz 1.3.2 -> 1.3.4
- jxrlib 1.1-1 -> 1.1-2
- libraw 0.17.2 -> 0.17.2-2
- lua 5.3.3 -> 5.3.3-1
- openssl 1.0.2j -> 1.0.2j-1
* Improvements in the post-build checks:
- Add check for files in the `<package>\` dir and `<package>\debug\` dir
* Introduce pre-install checks:
- The `install` command now checks that files will not be overwrriten when installing a package. A particular file can only be owned by a single package
* Introduce 'lib\manul-link\' directory. Libraries placing the lib files in that directory are not automatically added to the link line
* Disable all interactions with CMake registry
* `vcpkg /?` is now a valid equivalent of `vcpkg help`
* Fixes and improvements in existing portfiles and the `vcpkg` tool itself
-- vcpkg team <vcpkg@microsoft.com> MON, 12 Dec 2016 18:15:00 -0800
vcpkg (0.0.61)
--------------
* Add ports:
- cairo 1.14.6
- clockutils 1.1.1
- directxtk oct2016-1
- directxtk12 oct2016
- glslang 1c573fbcfba6b3d631008b1babc838501ca925d3
- libodb-pgsql 2.4.0
- pixman 0.34.0
- proj 4.9.3
- zstd 1.1.1
* Update ports:
- chakracore 1.3.0 -> 1.3.1
- curl 7.51.0 -> 7.51.0-1
- dxut 11.14 -> 11.14-2
- fmt 3.0.1 -> 3.0.1-1
- freetype 2.6.3-1 -> 2.6.3-2
- rxcpp 2.3.0 -> 3.0.0
- think-cell-range 1d785d9 -> e2d3018
- tiff 4.0.6 -> 4.0.6-1
* Fixes and improvements in existing portfiles and the `vcpkg` tool itself
-- vcpkg team <vcpkg@microsoft.com> MON, 28 Nov 2016 18:30:00 -0800
vcpkg (0.0.60)
--------------
* Add ports:
- box2d 2.3.1-374664b
- decimal-for-cpp 1.12
- jsoncpp 1.7.7
- libpq 9.6.1
- libxslt 1.1.29
- poco 1.7.6-2
- qt5 5.7-1
- signalrclient 1.0.0-beta1
- soci 2016.10.22
- tclap 1.2.1
* Update ports:
- boost 1.62-1 -> 1.62-6
- chakracore 1.2.0.0 -> 1.3.0
- eigen3 3.2.10-2 -> 3.3.0
- fmt 3.0.0-1 -> 3.0.1
- jxrlib 1.1 -> 1.1-1
- libbson 1.4.2 -> 1.5.0-rc6
- libuv 1.9.1 -> 1.10.1
- libwebp 0.5.1 -> 0.5.1-1
- mongo-c-driver 1.4.2 -> 1.5.0-rc6
- mongo-cxx-driver 3.0.2 -> 3.0.3
- pcre 8.38 -> 8.38-1
- sdl2 2.0.4 -> 2.0.5
* `vcpkg` has exceeded 100 libraries!
* Rework dependency handling
* Many more portfiles now support static builds. The remaining ones warn that static is not yet supported and will perform a dynamic build instead
* The triplet file is now automatically included and is available in every portfile
* Improvements in the post-build checks:
- Introduce `BUILD_INFO` file. This contains information about the settings used in the build. The post-build checks use this file to choose what checks to perform
- Add CRT checks
- Improve coff file reader. It is now more robust and it correctly handles a couple of corner cases
- A few miscellaneous checks to further prevent potential issues with the produced packages
* Improve integration and fix related issues
* Add support for VS 2017
* Introduce function that tries to repeatedly build up to a number of failures. This reduces/resolves issues from libraries with flaky builds
* Many fixes and improvements in existing portfiles and the `vcpkg` tool itself
-- vcpkg team <vcpkg@microsoft.com> WED, 23 Nov 2016 15:30:00 -0800
vcpkg (0.0.51)
--------------
* Add simple substring search to `vcpkg cache`
* Add simple substring search to `vcpkg list`
-- vcpkg team <vcpkg@microsoft.com> MON, 07 Nov 2016 14:45:00 -0800
vcpkg (0.0.50)
--------------
* Add ports:
- apr 1.5.2
- assimp 3.3.1
- boost-di 1.0.1
- bullet3 2.83.7.98d4780
- catch 1.5.7
- chakracore 1.2.0.0
- cppwinrt 1.010.0.14393.0
- cppzmq 0.0.0-1
- cryptopp 5.6.5
- double-conversion 2.0.1
- dxut 11.14
- fastlz 1.0
- freeglut 3.0.0
- geos 3.5.0
- gettext 0.19
- glbinding 2.1.1
- glog 0.3.4-0472b91
- harfbuzz 1.3.2
- jxrlib 1.1
- libbson 1.4.2
- libccd 2.0.0
- libmariadb 2.3.1
- libmysql 5.7.16
- libodb 2.4.0
- libodb-sqlite 2.4.0
- libogg 1.3.2
- libraw 0.17.2
- libtheora 1.1.1
- libvorbis
- libwebp 0.5.1
- libxml2 2.9.4
- log4cplus 1.1.3-RC7
- lua 5.3.3
- mongo-c-driver 1.4.2
- mongo-cxx-driver 3.0.2
- nanodbc 2.12.4
- openjpeg 2.1.2
- pcre 8.38
- pdcurses 3.4
- physfs 2.0.3
- rxcpp 2.3.0
- spdlog 0.11.0
- tbb 20160916
- think-cell-range 1d785d9
- utfcpp 2.3.4
- wt 3.3.6
- wtl 9.1
- zeromq 4.2.0
- zziplib 0.13.62
* Update ports:
- boost 1.62 -> 1.62-1
- cpprestsdk 2.8 -> 2.9.0-1
- curl 7.48.0 -> 7.51.0
- eigen3 3.2.9 -> 3.2.10-2
- freetype 2.6.3 -> 2.6.3-1
- glew 1.13.0 -> 2.0.0
- openssl 1.0.2h -> 1.0.2j
- range-v3 0.0.0-1 -> 20150729-vcpkg2
- sqlite3 3120200 -> 3.15.0
* Add support for static libraries
* Add more post build checks
* Improve post build checks related to verifying information in the dll/pdb files (e.g. architecture)
* Many fixes in existing portfiles
* Various updates in FAQ
* Release builds now create pdbs (debug builds already did)
-- vcpkg team <vcpkg@microsoft.com> MON, 07 Nov 2016 00:01:00 -0800
vcpkg (0.0.40)
--------------
* Add ports:
- ace 6.4.0
- asio 1.10.6
- bond 5.0.0
- constexpr 1.0
- doctest 1.1.0
- eigen3 3.2.9
- fmt 3.0.0
- gflags 2.1.2
- glm 0.9.8.1
- grpc 1.1.0
- gsl 0-fd5ad87bf
- gtest 1.8
- libiconv 1.14
- mpir 2.7.2
- protobuf 3.0.2
- ragel 6.9
- rapidxml 1.13
- sery 1.0.0
- stb 1.0
* Update ports:
- boost 1.62
- glfw3 3.2.1
- opencv 3.1.0-1
* Various fixes in existing portfiles
* Introduce environment variable `VCPKG_DEFAULT_TRIPLET`
* Replace everything concerning MD5 with SHA512
* Add mirror support
* `vcpkg` now checks for valid package names: only ASCII lowercase chars, digits, or dashes are allowed
* `vcpkg create` now also creates a templated CONTROL file
* `vcpkg create` now checks for invalid chars in the zip path
* `vcpkg edit` now throws an error if it cannot launch an editor
* Fix `vcpkg integrate` to only apply to C++ projects instead of all projects
* Fix `vcpkg integrate` locale-specific failures
* `vcpkg search` now does simple substring searching
* Fix path that assumed Visual Studio is installed in default location
* Enable multicore builds by default
* Add `.vcpkg-root` file to detect the root directory
* Fix `bootstrap.ps1` to work with older versions of powershell
* Add `SOURCE_PATH` variable to all portfiles.
* Many improvements in error messages shown by `vcpkg`
* Various updates in FAQ
* Move `CONTRIBUTING.md` to root
-- vcpkg team <vcpkg@microsoft.com> WED, 05 Oct 2016 17:00:00 -0700
vcpkg (0.0.30)
--------------
* DLLs are now accompanied with their corresponding PDBs.
* Rework removal commands. `vcpkg remove <pkg>` now uninstalls the package. `vcpkg remove --purge <pkg>` now uninstalls and also deletes the package.
* Rename option --arch to --triplet.
* Extensively rework directory tree layout to make it more intuitive.
* Improve post-build verification checks.
* Improve post-build verification messages; they are now more compact, more consistent and contain more suggestions on how to resolve the issues found.
* Fix `vcpkg integrate project` in cases where the path contained non-alphanumeric chars.
* Improve handling of paths. In general, commands with whitespace and non-ascii characters should be handled better now.
* Add colorized output for `vcpkg clean` and `vcpkg purge`.
* Add colorized output for many more errors.
* Improved `vcpkg update` to identify installed libraries that are out of sync with their portfiles.
* Added list of example port files to EXAMPLES.md
* Rename common CMake utilities to use prefix `vcpkg_`.
* [libpng] Fixed x86-uwp and x64-uwp builds.
* [libjpeg-turbo] Fixed x86-uwp and x64-uwp builds via suppressing static CRT linkage.
* [rapidjson] New library.
-- vcpkg team <vcpkg@microsoft.com> WED, 18 Sep 2016 20:50:00 -0700
|