Skip to content

Commit 0013ec8

Browse files
committed
Bump version to 0.2.0
1 parent cc302a7 commit 0013ec8

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ if (WIN32)
55
message(STATUS "VCPKG_TARGET_TRIPLET on windows: ${VCPKG_TARGET_TRIPLET}")
66
endif(WIN32)
77

8-
project(vectorlite VERSION 0.1.0 LANGUAGES CXX)
8+
project(vectorlite VERSION 0.2.0 LANGUAGES CXX)
99

1010
set(CMAKE_CXX_STANDARD 17)
1111
set(CMAKE_CXX_STANDARD_REQUIRED ON)

bindings/nodejs/packages/vectorlite-darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@1yefuwang1/vectorlite-darwin-arm64",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"homepage": "https://github.com/1yefuwang1/vectorlite",
55
"main": "src/index.js",
66
"files": ["src"],

bindings/nodejs/packages/vectorlite-darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@1yefuwang1/vectorlite-darwin-x64",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"homepage": "https://github.com/1yefuwang1/vectorlite",
55
"main": "src/index.js",
66
"files": ["src"],

bindings/nodejs/packages/vectorlite-linux-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@1yefuwang1/vectorlite-linux-x64",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"homepage": "https://github.com/1yefuwang1/vectorlite",
55
"main": "src/index.js",
66
"files": ["src"],

bindings/nodejs/packages/vectorlite-win32-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@1yefuwang1/vectorlite-win32-x64",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"homepage": "https://github.com/1yefuwang1/vectorlite",
55
"main": "src/index.js",
66
"files": ["src"],

bindings/nodejs/packages/vectorlite/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vectorlite",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"homepage": "https://github.com/1yefuwang1/vectorlite",
55
"main": "src/index.js",
66
"files": ["src"],
@@ -15,9 +15,9 @@
1515
"better-sqlite3": "^11.1.2"
1616
},
1717
"optionalDependencies": {
18-
"@1yefuwang1/vectorlite-darwin-x64": "0.1.0",
19-
"@1yefuwang1/vectorlite-darwin-arm64": "0.1.0",
20-
"@1yefuwang1/vectorlite-linux-x64": "0.1.0",
21-
"@1yefuwang1/vectorlite-win32-x64": "0.1.0"
18+
"@1yefuwang1/vectorlite-darwin-x64": "0.2.0",
19+
"@1yefuwang1/vectorlite-darwin-arm64": "0.2.0",
20+
"@1yefuwang1/vectorlite-linux-x64": "0.2.0",
21+
"@1yefuwang1/vectorlite-win32-x64": "0.2.0"
2222
}
2323
}

bindings/python/vectorlite_py/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22

3-
__version__ = '0.1.0'
3+
__version__ = '0.2.0'
44

55
def vectorlite_path():
66
loadable_path = os.path.join(os.path.dirname(__file__), 'vectorlite')

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import subprocess
1313
# import ninja
1414

15-
VERSION = '0.1.0'
15+
VERSION = '0.2.0'
1616
PACKAGE_NAME = 'vectorlite_py'
1717

1818
system = platform.system()

0 commit comments

Comments
 (0)