Skip to content

Commit 060c170

Browse files
authored
Merge pull request #1698 from conan-io/release/1.25.1
Release/1.25.1
2 parents 8394aa9 + 8ac9e6e commit 060c170

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

changelog.rst

+10
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,16 @@ Check https://github.com/conan-io/conan for issues and more details about develo
2121
Conan 1.25 shouldn't break any existing 1.0 recipe or command line invocation. If it does, please submit a report on GitHub.
2222
Read more about the :ref:`Conan stability commitment<stability>`.
2323

24+
1.25.1 (13-May-2020)
25+
--------------------
26+
27+
- Feature: Add missing gcc versions: 6.5, 7.5, 8.4, 10.1. `#6993 <https://github.com/conan-io/conan/pull/6993>`_ . Docs `here <https://github.com/conan-io/docs/pull/1689>`__
28+
- Bugfix: Resumable download introduced a bug when there is a fronted (like Apache) to Artifactory or other server that gzips the returned files, returning an incorrect ``Content-Length`` header that doesn't match the real content length. `#6996 <https://github.com/conan-io/conan/pull/6996>`_
29+
- Bugfix: Fix deploy generator in regards to relative symlinks. `#6994 <https://github.com/conan-io/conan/pull/6994>`_
30+
- Bugfix: Set ``shared_linker_flags`` to CMake ``MODULE`` targets too in ``cmake`` generators, not only to ``SHARED_LIBRARIES``. `#6983 <https://github.com/conan-io/conan/pull/6983>`_
31+
- Bugfix: Fix `conan_get_policy` return value. `#6982 <https://github.com/conan-io/conan/pull/6982>`_
32+
- Bugfix: Fix json output serialization for ``cpp_info.components``. `#6966 <https://github.com/conan-io/conan/pull/6966>`_
33+
2434
1.25.0 (06-May-2020)
2535
--------------------
2636

conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
# The short X.Y version.
4242
version = "1.25"
4343
# The full version, including alpha/beta/rc tags.
44-
release = u'1.25.0'
44+
release = u'1.25.1'
4545

4646
dir_path = os.path.dirname(os.path.realpath(__file__))
4747
if not os.path.exists(os.path.join(dir_path, "versions.json")):

reference/config_files/settings.yml.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ are possible. These are the **default** values, but it is possible to customize
5656
gcc: &gcc
5757
version: ["4.1", "4.4", "4.5", "4.6", "4.7", "4.8", "4.9",
5858
"5", "5.1", "5.2", "5.3", "5.4", "5.5",
59-
"6", "6.1", "6.2", "6.3", "6.4",
60-
"7", "7.1", "7.2", "7.3", "7.4",
61-
"8", "8.1", "8.2", "8.3",
59+
"6", "6.1", "6.2", "6.3", "6.4", "6.5",
60+
"7", "7.1", "7.2", "7.3", "7.4", "7.5",
61+
"8", "8.1", "8.2", "8.3", "8.4",
6262
"9", "9.1", "9.2", "9.3",
63-
"10"]
63+
"10", "10.1"]
6464
libcxx: [libstdc++, libstdc++11]
6565
threads: [None, posix, win32] # Windows MinGW
6666
exception: [None, dwarf2, sjlj, seh] # Windows MinGW

0 commit comments

Comments
 (0)