Skip to content

Commit 8f46ae1

Browse files
committedDec 4, 2018
1.10.0
1 parent a5031d8 commit 8f46ae1

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed
 

‎changelog.rst

+21-1
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,30 @@ Check https://github.com/conan-io/conan for issues and more details about develo
1919

2020
.. important::
2121

22-
Conan 1.9 shouldn't break any existing 1.0 recipe or command line invocation. If it does, please submit a report on GitHub.
22+
Conan 1.10 shouldn't break any existing 1.0 recipe or command line invocation. If it does, please submit a report on GitHub.
2323
Read more about the :ref:`Conan stability commitment<stability>`.
2424

2525

26+
1.10.0 (4-Dec-2018)
27+
-------------------
28+
29+
- Feature: Merged "revisions" feature code in develop branch, still disabled by default until it gets stabilized. `#3055 <https://github.com/conan-io/conan/pull/3055>`_
30+
- Feature: CMake global variable to disable Conan output ``CONAN_CMAKE_SILENT_OUTPUT`` `#4042 <https://github.com/conan-io/conan/pull/4042>`_
31+
- Feature: Added new ``make`` generator. `#4003 <https://github.com/conan-io/conan/pull/4003>`_
32+
- Feature: Deploy a conan snapshot package to [test.pypi.org](https://test.pypi.org/project/conan/) for every develop commit. `#4000 <https://github.com/conan-io/conan/pull/4000>`_
33+
- Fix: Using the `scm` feature when Conan is not able to read the gitignored files (local optimization mechanism) print a warning to improve the debug information but not crash. `#4045 <https://github.com/conan-io/conan/pull/4045>`_
34+
- Fix: The `tools.get` tool (download + unzip) now supports all the arguments of the `download` tool. e.g: `verify`, `retry`, `retry_wait` etc. `#4041 <https://github.com/conan-io/conan/pull/4041>`_
35+
- Fix: Improve ``make`` generator test `#4018 <https://github.com/conan-io/conan/pull/4018>`_
36+
- Fix: Add space and dot in ``conan new --help`` `#3999 <https://github.com/conan-io/conan/pull/3999>`_
37+
- Fix: Resolve aliased packages in python_requires `#3957 <https://github.com/conan-io/conan/pull/3957>`_
38+
- Bugfix: Better checks of package reference ``pkg/version@user/channel``, avoids bugs for conanfile in 4 nested folders and ``conan install path/to/the/file`` `#4044 <https://github.com/conan-io/conan/pull/4044>`_
39+
- Bugfix: Running Windows subsystem scripts crashed when the PATH environment variable passed as a list. `#4039 <https://github.com/conan-io/conan/pull/4039>`_
40+
- Bugfix: Fix removal of conanfile.py with :command:`conan source` command and the removal of source folder in the local cache when something fails `#4033 <https://github.com/conan-io/conan/pull/4033>`_
41+
- Bugfix: A :command:`conan install` with a reference failed when running in the operating system root folder because python tried to create the directory even when nothing is going to be written. `#4012 <https://github.com/conan-io/conan/pull/4012>`_
42+
- Bugfix: Fix qbs generator mixing sharedlinkflags and exelinkflags `#3980 <https://github.com/conan-io/conan/pull/3980>`_
43+
- Bugfix: compiler_args generated "mytool.lib.lib" for Visual Studio libraries that were defined with the ``.lib`` extension in the ``self.cpp_info.libs`` field of ``package_info()``. `#3976 <https://github.com/conan-io/conan/pull/3976>`_
44+
45+
2646
1.9.2 (20-Nov-2018)
2747
-------------------
2848

‎conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@
3939
]
4040

4141
# The short X.Y version.
42-
version = "1.9"
42+
version = "1.10"
4343
# The full version, including alpha/beta/rc tags.
44-
release = u'1.9.2'
44+
release = u'1.10.0'
4545

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

‎deploy_gh_pages.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@ def deploy():
9999
if should_deploy():
100100
config_git()
101101
clean_gh_pages()
102-
versions_dict = {"master": "1.9",
102+
versions_dict = {"master": "1.10",
103+
"release/1.9.4": "1.9",
103104
"release/1.8.4": "1.8",
104105
"release/1.7.4": "1.7",
105106
"release/1.6.1": "1.6",

0 commit comments

Comments
 (0)
Please sign in to comment.