diff --git a/CHANGES.md b/CHANGES.md index b1d041d..bf48f4b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,6 @@ # Changes -## v0.2 (in progress) +## v0.2 (2019-11-26) - Use `std::string_view` if available - Install a `pkg-config` `.pc` file that sets the compiler's include path as diff --git a/README.md b/README.md index e7b9cee..c405f98 100644 --- a/README.md +++ b/README.md @@ -17,8 +17,9 @@ addition, the tests require a C++14 compiler and [mettle][mettle]. ## Installation -bencode.hpp uses [bfg9000][bfg9000] to build and test itself. Building with -`bfg9000` is straightforward. Just run the following: +If you're using Ubuntu (or a similar distro), you can install bencode from the +following PPA: [ppa:jimporter/stable][ppa]. If you're not using Ubuntu, you can +also build from source using [bfg9000][bfg9000]. Just run the following: ```sh $ cd /path/to/bencode.hpp/ @@ -120,4 +121,5 @@ This library is licensed under the [BSD 3-Clause license](LICENSE). [boost]: https://www.boost.org/ [library-fundamentals]: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/n4480.html [mettle]: https://jimporter.github.io/mettle/ +[ppa]: https://launchpad.net/~jimporter/+archive/ubuntu/stable [bfg9000]: https://jimporter.github.io/bfg9000/ diff --git a/build.bfg b/build.bfg index 9119d45..d2f33f6 100644 --- a/build.bfg +++ b/build.bfg @@ -1,7 +1,7 @@ # -*- python -*- bfg9000_required_version('>=0.5.0') -project('bencodehpp', version='0.2-dev') +project('bencodehpp', version='0.2') global_options([opts.std(argv.std)], lang='c++')