Skip to content

Commit 654f449

Browse files
authored
Merge pull request #4385 from conan-io/release/2.25
Sync develop2
2 parents 17a4dc9 + fea60ce commit 654f449

27 files changed

+27
-27
lines changed

examples/dev_flow/debug/debugging_visual.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ The hook makes use of the ``dumpbin`` tool which is included in the Visual Studi
104104
to get information of a DLL, in this case the path where its associated PDB is located. It will be used for every DLL
105105
in the package to locate its PDB to copy it to the package folder.
106106

107-
For more information on how PDBs work with Visual and how we used it to create the hook can be found in the
107+
For more information on how PDBs work with Visual Studio and how we used it to create the hook can be found in the
108108
`hook readme <https://github.com/conan-io/conan-extensions/blob/main/extensions/hooks/README.md>`_.
109109

110110
Debugging without build files

reference/tools/system/pyenv.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Using a Python package in a recipe
3232

3333
To install a python package or use a tool installed with Python, we have to install it using the ``PyEnv.install()`` method.
3434

35-
When the `py_version`` parameter is defined, Conan will automatically use `UV <https://docs.astral.sh/uv/>` to create and manage a temporary virtual environment
35+
When the ``py_version`` parameter is defined, Conan will automatically use `UV <https://docs.astral.sh/uv/>`_ to create and manage a temporary virtual environment
3636
with that specific Python version.
3737
**UV requires Python 3.8 or higher**, make sure you use a compatible Python version if you want to define the ``py_version``.
3838

security/audit.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ by leveraging the packages list filtering from the ``conan list`` command. For e
5858
5959
.. seealso::
6060

61-
- `JFrog Academy Conan 2 Essentials: Scanning C++ packages for Vulnerabilities using Conan Audit <https://academy.jfrog.com/conan-2-essentials/2164300?utm_source=Conan+Docs>`__
61+
- `JFrog Academy Conan 2 Essentials Module 1, Lesson 7: Scanning C++ packages for Vulnerabilities using Conan Audit <https://academy.jfrog.com/path/conan-cc-package-manager/conan-2-essentials?utm_source=Conan+Docs>`__
6262
- For detailed reference documentation on all ``conan audit`` subcommands and their
6363
options, consult the :ref:`conan audit command reference
6464
<reference_commands_audit>`.

tutorial/conan_repositories.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ the use of a source folder with recipes as a Conan remote repository.
3535

3636
The Conan 2 Essentials training course is available for free at the JFrog Academy,
3737
which covers the same topics as this documentation but in a more interactive way.
38-
You can access it `here <https://academy.jfrog.com/conan-2-essentials?utm_source=Conan+Docs>`__.
38+
You can access it `here <https://academy.jfrog.com/path/conan-cc-package-manager?utm_source=Conan+Docs>`__.

tutorial/conan_repositories/setting_up_conan_remotes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ There are several options to set up a Conan repository:
4040

4141
.. seealso::
4242

43-
- `JFrog Academy Conan 2 Essentials: Working with Conan Repositories <https://academy.jfrog.com/conan-2-essentials/2131740?utm_source=Conan+Docs>`__
43+
- `JFrog Academy Conan 2 Essentials Module 2, Lesson 13: Working with Conan Repositories <https://academy.jfrog.com/path/conan-cc-package-manager/conan-2-essentials-module-2-package-creation-and-uploading?utm_source=Conan+Docs>`__

tutorial/conan_repositories/uploading_packages.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ You can check whether the package exists on your local computer again with:
6060
6161
.. seealso::
6262

63-
- `JFrog Academy Conan 2 Essentials: Working with Conan Repositories <https://academy.jfrog.com/conan-2-essentials/2131740?utm_source=Conan+Docs>`__
63+
- `JFrog Academy Conan 2 Essentials Module 2, Lesson 13: Working with Conan Repositories <https://academy.jfrog.com/path/conan-cc-package-manager/conan-2-essentials-module-2-package-creation-and-uploading?utm_source=Conan+Docs>`__
6464
- :ref:`conan upload command reference <reference_commands_upload>`
6565
- :ref:`conan remote command reference <reference_commands_remote>`
6666
- :ref:`conan search command reference <reference_commands_search>`

tutorial/consuming_packages.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ to lockfiles to achieve reproducibility of the dependency graph.
4141

4242
The Conan 2 Essentials training course is available for free at the JFrog Academy,
4343
which covers the same topics as this documentation but in a more interactive way.
44-
You can access it `here <https://academy.jfrog.com/conan-2-essentials?utm_source=Conan+Docs>`__.
44+
You can access it `here <https://academy.jfrog.com/path/conan-cc-package-manager?utm_source=Conan+Docs>`__.

tutorial/consuming_packages/build_simple_cmake_project.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ See :ref:`Building with CMake presets<examples-tools-cmake-toolchain-build-proje
273273

274274
.. seealso::
275275

276-
- `JFrog Academy Conan 2 Essentials: Building A Simple CMake Project From Conan <https://academy.jfrog.com/conan-2-essentials/2131739?utm_source=Conan+Docs>`__
276+
- `JFrog Academy Conan 2 Essentials Module 1, Lesson 1: Building A Simple CMake Project From Conan <https://academy.jfrog.com/path/conan-cc-package-manager/conan-2-essentials?utm_source=Conan+Docs>`__
277277
- :ref:`Building with CMake presets<examples-tools-cmake-toolchain-build-project-presets>`
278278
- :ref:`Getting started with Autotools<examples_tools_autotools_autotools_toolchain_build_project_autotools_toolchain>`
279279
- :ref:`Getting started with Meson<examples_tools_meson_toolchain_build_simple_meson_project>`

tutorial/consuming_packages/cross_building_with_conan.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ You could check that we built the application for the correct architecture by ru
219219
220220
.. seealso::
221221

222-
- `JFrog Academy Conan 2 Essentials: Cross-Compiling Your Applications With Conan <https://academy.jfrog.com/conan-2-essentials/2182684?utm_source=Conan+Docs>`__
222+
- `JFrog Academy Conan 2 Essentials Module 1, Lesson 5: Cross-Compiling Your Applications With Conan <https://academy.jfrog.com/path/conan-cc-package-manager/conan-2-essentials?utm_source=Conan+Docs>`__
223223
- :ref:`Creating a Conan package for a toolchain<example_cross_build_toolchain_package>`
224224
- :ref:`Cross building to Android with the NDK<examples_cross_build_android_ndk>`
225225
- :ref:`VirtualBuildEnv reference <conan_tools_env_virtualbuildenv>`

tutorial/consuming_packages/different_configurations.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ matched our specified configuration.
333333
334334
.. seealso::
335335
336-
- `JFrog Academy Conan 2 Essentials: Building For Multiple Configurations With Conan And CMake Presets <https://academy.jfrog.com/conan-2-essentials/2131740?utm_source=Conan+Docs>`__
336+
- `JFrog Academy Conan 2 Essentials Module 1, Lesson 2: Building For Multiple Configurations With Conan And CMake Presets <https://academy.jfrog.com/path/conan-cc-package-manager/conan-2-essentials?utm_source=Conan+Docs>`__
337337
- :ref:`VirtualRunEnv reference <conan_tools_env_virtualrunenv>`
338338
- :ref:`Cross-compiling using --profile:build and --profile:host <consuming_packages_cross_building_with_conan>`
339339
- :ref:`creating_packages_configure_options_settings`

0 commit comments

Comments
 (0)