diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index a7c8535..1d11f2f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -230,7 +230,6 @@ jobs:
cd ..
git clone -b $BOOST_BRANCH --depth 1 https://github.com/boostorg/boost.git boost-root
cd boost-root
- mkdir -p libs/$LIBRARY # remove when/if the library makes it into Boost
cp -r $GITHUB_WORKSPACE/* libs/$LIBRARY
git submodule update --init tools/boostdep
python3 tools/boostdep/depinst/depinst.py -I example --git_args "--jobs 3" $LIBRARY
@@ -293,7 +292,6 @@ jobs:
cd ..
git clone -b %BOOST_BRANCH% --depth 1 https://github.com/boostorg/boost.git boost-root
cd boost-root
- mkdir -p libs\%LIBRARY% # remove when/if the library makes it into Boost
xcopy /s /e /q %GITHUB_WORKSPACE% libs\%LIBRARY%\
git submodule update --init tools/boostdep
python tools/boostdep/depinst/depinst.py -I example --git_args "--jobs 3" %LIBRARY%
@@ -397,7 +395,6 @@ jobs:
cd ..
git clone -b %BOOST_BRANCH% --depth 1 https://github.com/boostorg/boost.git boost-root
cd boost-root
- mkdir -p libs\%LIBRARY% # remove when/if the library makes it into Boost
xcopy /s /e /q %GITHUB_WORKSPACE% libs\%LIBRARY%\
git submodule update --init tools/boostdep
python tools/boostdep/depinst/depinst.py -I benchmark -I example --git_args "--jobs 3" %LIBRARY%
@@ -502,4 +499,4 @@ jobs:
- name: Upload coverage
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
- run: ci/codecov.sh "upload"
\ No newline at end of file
+ run: ci/codecov.sh "upload"
diff --git a/README.md b/README.md
index a39e142..8587d48 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,10 @@
-# Candidate Boost Bloom Library
+# Boost Bloom Library
-[](https://github.com/joaquintides/bloom/tree/master) [](https://github.com/joaquintides/bloom/actions/workflows/ci.yml) [](https://drone.cpp.al/joaquintides/bloom) [](https://app.codecov.io/gh/joaquintides/bloom/tree/master) [](https://master.bloom.cpp.al/)
-[](https://github.com/joaquintides/bloom/tree/develop) [](https://github.com/joaquintides/bloom/actions/workflows/ci.yml) [](https://drone.cpp.al/joaquintides/bloom) [](https://app.codecov.io/gh/joaquintides/bloom/tree/develop) [](https://develop.bloom.cpp.al/)
+[](https://github.com/boostorg/bloom/tree/master) [](https://github.com/boostorg/bloom/actions/workflows/ci.yml) [](https://drone.cpp.al/boostorg/bloom) [](https://app.codecov.io/gh/joaquintides/bloom/tree/master) [](https://boost.org/doc/libs/master/libs/bloom)
+[](https://github.com/boostorg/bloom/tree/develop) [](https://github.com/boostorg/bloom/actions/workflows/ci.yml) [](https://drone.cpp.al/boostorg/bloom) [](https://app.codecov.io/gh/joaquintides/bloom/tree/develop) [](https://boost.org/doc/libs/develop/libs/bloom)
[](https://www.boost.org/users/license.html)
-(Candidate) Boost.Bloom provides the class template `boost::bloom::filter` that
+Boost.Bloom provides the class template `boost::bloom::filter` that
can be configured to implement a classical [Bloom filter](https://en.wikipedia.org/wiki/Bloom_filter)
as well as variations discussed in the literature such as block filters, multiblock filters, and more.
@@ -41,21 +41,38 @@ int main()
## Learn about Boost.Bloom
-* [Online documentation](https://develop.bloom.cpp.al/)
-* [Some benchmarks](https://github.com/joaquintides/boost_bloom_benchmarks)
+* [Online documentation](https://boost.org/libs/bloom)
+* [Some benchmarks](https://github.com/boostorg/boost_bloom_benchmarks)
## Install Boost.Bloom
-Clone this repo, adjust your include paths and enjoy.
-Boost.Bloom is header-only and requires no building. A recent version of Boost is required.
+* [Download Boost](https://www.boost.org/users/download/) and you're ready to go (this is a header-only library requiring no building).
+* Using Conan 2: In case you don't have it yet, add an entry for Boost in your `conanfile.txt` (the example requires at least Boost 1.89):
+```
+[requires]
+boost/[>=1.89.0]
+```
+