Skip to content

Commit d5a6cff

Browse files
authored
Merge branch 'develop' into nft-reserve
2 parents e1a955c + d9a5bca commit d5a6cff

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

BUILD.md

-7
Original file line numberDiff line numberDiff line change
@@ -425,11 +425,4 @@ If you want to experiment with a new package, follow these steps:
425425
[gcovr]: https://gcovr.com/en/stable/getting-started.html
426426
[python-pip]: https://packaging.python.org/en/latest/guides/installing-using-pip-and-virtual-environments/
427427
[build_type]: https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html
428-
[runtime]: https://cmake.org/cmake/help/latest/variable/CMAKE_MSVC_RUNTIME_LIBRARY.html
429-
[toolchain]: https://cmake.org/cmake/help/latest/manual/cmake-toolchains.7.html
430-
[pcf]: https://cmake.org/cmake/help/latest/manual/cmake-packages.7.html#package-configuration-file
431-
[pvf]: https://cmake.org/cmake/help/latest/manual/cmake-packages.7.html#package-version-file
432-
[find_package]: https://cmake.org/cmake/help/latest/command/find_package.html
433-
[search]: https://cmake.org/cmake/help/latest/command/find_package.html#search-procedure
434-
[prefix_path]: https://cmake.org/cmake/help/latest/variable/CMAKE_PREFIX_PATH.html
435428
[profile]: https://docs.conan.io/en/latest/reference/profiles.html

docs/build/conan.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,16 @@ For options, each package recipe defines its own defaults.
109109
You can pass every parameter to Conan on the command line,
110110
but it is more convenient to put them in a configuration file, once, that
111111
Conan can read every time it is configured.
112-
For Conan, that file is a [profile][profile].
112+
For Conan, that file is a [profile][].
113113
**All we must do to properly configure Conan is edit and pass the profile.**
114114
By default, Conan will use the profile named "default".
115+
116+
[build_type]: https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html
117+
[find_package]: https://cmake.org/cmake/help/latest/command/find_package.html
118+
[pcf]: https://cmake.org/cmake/help/latest/manual/cmake-packages.7.html#package-configuration-file
119+
[prefix_path]: https://cmake.org/cmake/help/latest/variable/CMAKE_PREFIX_PATH.html
120+
[profile]: https://docs.conan.io/en/latest/reference/profiles.html
121+
[pvf]: https://cmake.org/cmake/help/latest/manual/cmake-packages.7.html#package-version-file
122+
[runtime]: https://cmake.org/cmake/help/latest/variable/CMAKE_MSVC_RUNTIME_LIBRARY.html
123+
[search]: https://cmake.org/cmake/help/latest/command/find_package.html#search-procedure
124+
[toolchain]: https://cmake.org/cmake/help/latest/manual/cmake-toolchains.7.html

src/ripple/protocol/impl/BuildInfo.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ namespace BuildInfo {
3333
// and follow the format described at http://semver.org/
3434
//------------------------------------------------------------------------------
3535
// clang-format off
36-
char const* const versionString = "2.0.1-b1"
36+
char const* const versionString = "2.0.1-rc1"
3737
// clang-format on
3838

3939
#if defined(DEBUG) || defined(SANITIZER)

0 commit comments

Comments
 (0)