Skip to content

Commit 2abc8dd

Browse files
committed
Release 0.14.0
1 parent b3041bd commit 2abc8dd

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

.binder/environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: xeus-cling
22
channels:
33
- conda-forge
44
dependencies:
5-
- xeus-cling=0.13.0
5+
- xeus-cling=0.14.0
66
- xtensor=0.23.0
77
- xtensor-blas=0.19.0
88
- notebook

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ mamba install xeus-cling -c conda-forge
3434
You will first need to create a new environment and install the dependencies:
3535

3636
```bash
37-
mamba create -n xeus-cling -c conda-forge cmake "xeus>=2.0,<3.0" cling=0.8 clangdev=5.0.0 llvmdev=5 "nlohmann_json>=3.9.1,<3.10" "cppzmq>=4.6.0,<5" "xtl>=0.7,<0.8" pugixml "cxxopts>=2.1.1,<2.2"
37+
mamba create -n xeus-cling -c conda-forge cmake "xeus-zmq>=1.0,<2.0" cling=0.8 clangdev=5.0.0 llvmdev=5 "nlohmann_json>=3.9.1,<3.10" "cppzmq>=4.6.0,<5" "xtl>=0.7,<0.8" pugixml "doctest>=2.4.6" "cxxopts>=2.1.1,<2.2"
3838
source activate xeus-cling
3939
```
4040

@@ -96,17 +96,22 @@ A C++ backend for the Jupyter interactive widgets is available in the [`xwidgets
9696

9797
``xeus-cling`` depends on
9898

99-
- [xeus](https://github.com/jupyter-xeus/xeus)
99+
- [xeus-zmq](https://github.com/jupyter-xeus/xeus-zmq)
100100
- [xtl](https://github.com/xtensor-stack/xtl)
101101
- [cling](https://github.com/root-project/cling)
102102
- [pugixml](https://github.com/zeux/pugixml)
103103
- [cxxopts](https://github.com/jarro2783/cxxopts)
104104
- [nlohmann_json](https://github.com/nlohmann/json)
105105

106+
| `xeus-cling` | `xeus-zmq` | `xtl` | `cling` | `pugixml` | `cppzmq` | `cxxopts` | `nlohmann_json` | `dirent` (windows only) |
107+
|--------------|-----------------|-----------------|---------------|---------------|----------|---------------|-----------------|-------------------------|
108+
| master | >=1.0.0,<2.0.0 | >=0.7.0,<0.8.0 | >=0.6,<0.9 | ~1.8.1 | ~4.3.0 | >=2.1.1,<=2.2 | >=3.6.1,<4.0 | >=2.3.2,<3 |
109+
| 0.14.0 | >=1.0.0,<2.0.0 | >=0.7.0,<0.8.0 | >=0.6,<0.9 | ~1.8.1 | ~4.3.0 | >=2.1.1,<=2.2 | >=3.6.1,<4.0 | >=2.3.2,<3 |
110+
111+
Prior to version 0.14, `xeus-cling` was depending on `xeus` instead of `xeus-zmq:
106112

107113
| `xeus-cling` | `xeus` | `xtl` | `cling` | `pugixml` | `cppzmq` | `cxxopts` | `nlohmann_json` | `dirent` (windows only) |
108114
|--------------|-----------------|-----------------|---------------|---------------|----------|---------------|-----------------|-------------------------|
109-
| master | >=1.0.0,<2.0.0 | >=0.7.0,<0.8.0 | >=0.6,<0.9 | ~1.8.1 | ~4.3.0 | >=2.1.1,<=2.2 | >=3.6.1,<4.0 | >=2.3.2,<3 |
110115
| 0.13.0 | >=2.0.0,<3.0.0 | >=0.7.0,<0.8.0 | >=0.6,<0.9 | ~1.8.1 | ~4.3.0 | >=2.1.1,<=2.2 | >=3.6.1,<3.10 | >=2.3.2,<3 |
111116
| 0.12.1 | >=1.0.0,<2.0.0 | >=0.7.0,<0.8.0 | >=0.6,<0.9 | ~1.8.1 | ~4.3.0 | >=2.1.1,<=2.2 | >=3.6.1,<4.0 | >=2.3.2,<3 |
112117
| 0.12.0 | >=1.0.0,<2.0.0 | >=0.7.0,<0.8.0 | >=0.6,<0.9 | ~1.8.1 | ~4.3.0 | >=2.1.1,<=2.2 | >=3.6.1,<4.0 | >=2.3.2,<3 |

include/xeus-cling/xeus_cling_config.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
// Project version
1414
#define XEUS_CLING_VERSION_MAJOR 0
15-
#define XEUS_CLING_VERSION_MINOR 13
15+
#define XEUS_CLING_VERSION_MINOR 14
1616
#define XEUS_CLING_VERSION_PATCH 0
1717

1818
// Composing the version string from major, minor and patch

0 commit comments

Comments
 (0)