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
|
Version 0.6.0
* Various new functionality in the path, timestamp, manifest, process,
fdstream, and filesystem facilities.
* Character scanner improvements and optimizations.
* New openssl process wrapper classes.
* New regex utility functions.
* Fast-path SHA256 functions.
Version 0.5.0
* Various new functionality in the process, fdstream, and filesystem
facilities.
* Feature test facility (ft/).
* Tab, manifest parsers/serializers.
* Process wrappers for running sendmail and curl.
* Standard version and range classes.
Version 0.4.0
* The process class has been redesigned and extended.
* The basic_path class template has been redesigned and extended. The path
representation now stores the directory trailing slash, if present.
* The fdstream classes have been redesigned and extended.
* A number of new filesystem manipulation functions have been added.
* Add path::temp_directory(), path::temp_path() utility functions.
* Add base64_encode(), base64_decode() utility functions.
* Add portable ucase(), lcase(), casecmp(), alpha(), digit(), alnum().
* The 'freebsd' target triplet class has been changed to 'bsd'.
Version 0.3.0
* Add SHA256 hash calculator based on code from the FreeBSD project. That
code is (naturally) licensed under the simplified/2-clause BSD license so
the library is now MIT/BSD-licensed.
Also add helper sha256_to_fingerprint() fingerprint_to_sha256() functions.
* Add vector_view class template.
* Add path::realize() (on POSIX calls realpath(3)), path::compare().
* Recognize MSVC target triplet (*-microsoft-win32-msvcXX.Z).
* Derive a target class from the target triplet for some targets. Currently
the classes are: 'linux', 'macosx', 'freebsd', 'windows', and 'other'.
* Add timestamp from_string().
* Add combine_hash() utility function.
Version 0.2.0
* First public release.
|