Skip to content

Commit

Permalink
Bump version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
1yefuwang1 committed Aug 19, 2024
1 parent cc302a7 commit 0013ec8
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ if (WIN32)
message(STATUS "VCPKG_TARGET_TRIPLET on windows: ${VCPKG_TARGET_TRIPLET}")
endif(WIN32)

project(vectorlite VERSION 0.1.0 LANGUAGES CXX)
project(vectorlite VERSION 0.2.0 LANGUAGES CXX)

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@1yefuwang1/vectorlite-darwin-arm64",
"version": "0.1.0",
"version": "0.2.0",
"homepage": "https://github.com/1yefuwang1/vectorlite",
"main": "src/index.js",
"files": ["src"],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@1yefuwang1/vectorlite-darwin-x64",
"version": "0.1.0",
"version": "0.2.0",
"homepage": "https://github.com/1yefuwang1/vectorlite",
"main": "src/index.js",
"files": ["src"],
Expand Down
2 changes: 1 addition & 1 deletion bindings/nodejs/packages/vectorlite-linux-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@1yefuwang1/vectorlite-linux-x64",
"version": "0.1.0",
"version": "0.2.0",
"homepage": "https://github.com/1yefuwang1/vectorlite",
"main": "src/index.js",
"files": ["src"],
Expand Down
2 changes: 1 addition & 1 deletion bindings/nodejs/packages/vectorlite-win32-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@1yefuwang1/vectorlite-win32-x64",
"version": "0.1.0",
"version": "0.2.0",
"homepage": "https://github.com/1yefuwang1/vectorlite",
"main": "src/index.js",
"files": ["src"],
Expand Down
10 changes: 5 additions & 5 deletions bindings/nodejs/packages/vectorlite/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vectorlite",
"version": "0.1.0",
"version": "0.2.0",
"homepage": "https://github.com/1yefuwang1/vectorlite",
"main": "src/index.js",
"files": ["src"],
Expand All @@ -15,9 +15,9 @@
"better-sqlite3": "^11.1.2"
},
"optionalDependencies": {
"@1yefuwang1/vectorlite-darwin-x64": "0.1.0",
"@1yefuwang1/vectorlite-darwin-arm64": "0.1.0",
"@1yefuwang1/vectorlite-linux-x64": "0.1.0",
"@1yefuwang1/vectorlite-win32-x64": "0.1.0"
"@1yefuwang1/vectorlite-darwin-x64": "0.2.0",
"@1yefuwang1/vectorlite-darwin-arm64": "0.2.0",
"@1yefuwang1/vectorlite-linux-x64": "0.2.0",
"@1yefuwang1/vectorlite-win32-x64": "0.2.0"
}
}
2 changes: 1 addition & 1 deletion bindings/python/vectorlite_py/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

__version__ = '0.1.0'
__version__ = '0.2.0'

def vectorlite_path():
loadable_path = os.path.join(os.path.dirname(__file__), 'vectorlite')
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import subprocess
# import ninja

VERSION = '0.1.0'
VERSION = '0.2.0'
PACKAGE_NAME = 'vectorlite_py'

system = platform.system()
Expand Down

0 comments on commit 0013ec8

Please sign in to comment.