From 3ed68264d79d123e5b12963d691f8b44f0f2f49a Mon Sep 17 00:00:00 2001 From: Murat Dogan Date: Mon, 23 Aug 2021 10:16:36 +0300 Subject: [PATCH] bump version to 0.1.6 --- .vscode/c_cpp_properties.json | 18 --------- .vscode/settings.json | 74 ----------------------------------- CMakeLists.txt | 4 +- package-lock.json | 4 +- package.json | 4 +- 5 files changed, 6 insertions(+), 98 deletions(-) delete mode 100644 .vscode/c_cpp_properties.json delete mode 100644 .vscode/settings.json diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json deleted file mode 100644 index 48b6d96..0000000 --- a/.vscode/c_cpp_properties.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "configurations": [ - { - "name": "Linux", - "includePath": [ - "${workspaceFolder}/**", - "/usr/include/node" - ], - "defines": [], - "compilerPath": "/usr/bin/g++", - "cStandard": "c11", - "cppStandard": "gnu++14", - "intelliSenseMode": "clang-x64", - "configurationProvider": "ms-vscode.cmake-tools" - } - ], - "version": 4 -} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 4efeb8f..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "editor.formatOnSave": true, - "files.associations": { - "cctype": "cpp", - "clocale": "cpp", - "cmath": "cpp", - "csignal": "cpp", - "cstdarg": "cpp", - "cstddef": "cpp", - "cstdio": "cpp", - "cstdlib": "cpp", - "cstring": "cpp", - "ctime": "cpp", - "cwchar": "cpp", - "cwctype": "cpp", - "array": "cpp", - "atomic": "cpp", - "bit": "cpp", - "*.tcc": "cpp", - "bitset": "cpp", - "chrono": "cpp", - "codecvt": "cpp", - "complex": "cpp", - "condition_variable": "cpp", - "cstdint": "cpp", - "deque": "cpp", - "forward_list": "cpp", - "list": "cpp", - "map": "cpp", - "set": "cpp", - "unordered_map": "cpp", - "unordered_set": "cpp", - "vector": "cpp", - "exception": "cpp", - "algorithm": "cpp", - "functional": "cpp", - "iterator": "cpp", - "memory": "cpp", - "memory_resource": "cpp", - "numeric": "cpp", - "optional": "cpp", - "random": "cpp", - "ratio": "cpp", - "regex": "cpp", - "string": "cpp", - "string_view": "cpp", - "system_error": "cpp", - "tuple": "cpp", - "type_traits": "cpp", - "utility": "cpp", - "fstream": "cpp", - "future": "cpp", - "initializer_list": "cpp", - "iomanip": "cpp", - "iosfwd": "cpp", - "iostream": "cpp", - "istream": "cpp", - "limits": "cpp", - "mutex": "cpp", - "new": "cpp", - "ostream": "cpp", - "shared_mutex": "cpp", - "sstream": "cpp", - "stdexcept": "cpp", - "streambuf": "cpp", - "thread": "cpp", - "cinttypes": "cpp", - "typeindex": "cpp", - "typeinfo": "cpp", - "valarray": "cpp", - "variant": "cpp", - "*.ipp": "cpp" - } -} \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index 56097ca..6693bd8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.15) cmake_policy(SET CMP0091 NEW) -project(node_datachannel VERSION 0.1.5) +project(node_datachannel VERSION 0.1.6) include_directories(${CMAKE_JS_INC}) @@ -27,7 +27,7 @@ include(FetchContent) FetchContent_Declare( libdatachannel GIT_REPOSITORY https://github.com/paullouisageneau/libdatachannel.git - GIT_TAG "v0.14.0" + GIT_TAG "v0.14.2" ) FetchContent_GetProperties(libdatachannel) diff --git a/package-lock.json b/package-lock.json index adae1a1..2f02993 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "node-datachannel", - "version": "0.1.5", + "version": "0.1.6", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -6249,4 +6249,4 @@ } } } -} +} \ No newline at end of file diff --git a/package.json b/package.json index fb5f9d5..2afa882 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-datachannel", - "version": "0.1.5", + "version": "0.1.6", "description": "libdatachannel node bindings", "main": "lib/index.js", "typings": "lib/index.d.ts", @@ -45,4 +45,4 @@ "dependencies": { "prebuild-install": "^5.3.6" } -} +} \ No newline at end of file