Skip to content

Commit 40edecf

Browse files
committed
Release 0.7.0
1 parent 7f09985 commit 40edecf

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

BuildWasmDockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ RUN cd /deps/xeus/build && \
6969
##################################################################
7070

7171
RUN mkdir -p /deps/xeus-lite/build
72-
RUN git clone https://github.com/jupyter-xeus/xeus-lite.git /deps/xeus-lite/src
72+
RUN git clone --branch 1.0.0 https://github.com/jupyter-xeus/xeus-lite.git /deps/xeus-lite/src
7373

7474
RUN cd /deps/xeus-lite/build && \
7575
emcmake cmake ../src \

CMakeLists.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -383,10 +383,10 @@ if(XEUS_LUA_EMSCRIPTEN_WASM_BUILD)
383383
include(WasmBuildOptions)
384384
find_package(xeus-lite REQUIRED)
385385
message(STATUS ${XEUS_LUA_LUA_LIBRARIES})
386-
add_executable(xeus_kernel src/main_emscripten_kernel.cpp )
387-
target_link_libraries(xeus_kernel xeus-lua-static xeus-lite)
388-
target_compile_features(xeus_kernel PRIVATE cxx_std_17)
389-
xeus_wasm_link_options(xeus_kernel "web,worker")
386+
add_executable(xlua-lite src/main_emscripten_kernel.cpp )
387+
target_link_libraries(xlua-lite xeus-lua-static xeus-lite)
388+
target_compile_features(xlua-lite PRIVATE cxx_std_17)
389+
xeus_wasm_link_options(xlua-lite "web,worker")
390390
endif()
391391

392392

include/xeus-lua/xeus_lua_config.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212

1313
// Project version
1414
#define XEUS_LUA_VERSION_MAJOR 0
15-
#define XEUS_LUA_VERSION_MINOR 6
16-
#define XEUS_LUA_VERSION_PATCH 2
15+
#define XEUS_LUA_VERSION_MINOR 7
16+
#define XEUS_LUA_VERSION_PATCH 0
1717

1818
// Composing the version string from major, minor and patch
1919
#define XEUS_LUA_CONCATENATE(A, B) XEUS_LUA_CONCATENATE_IMPL(A, B)

0 commit comments

Comments
 (0)