Skip to content

Commit

Permalink
Javet v0.9.14 (#96)
Browse files Browse the repository at this point in the history
* Added `IJavetMappable`
* Enhanced `JavetObjectConverter` to look up custom objects recursively
* Renamed `V8BindEnabler` to `V8BindingEnabler`
* Renamed `V8VirtualEscapableValue` to `V8Scope` and enhanced `V8Scope` to support multiple values
  • Loading branch information
caoccao authored Sep 30, 2021
1 parent 26e385c commit 48bb90a
Show file tree
Hide file tree
Showing 433 changed files with 5,419 additions and 6,895 deletions.
12 changes: 6 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,31 +52,31 @@ Maven
<dependency>
<groupId>com.caoccao.javet</groupId>
<artifactId>javet</artifactId>
<version>0.9.13</version>
<version>0.9.14</version>
</dependency>
<!-- Mac OS (x86_64 Only) -->
<dependency>
<groupId>com.caoccao.javet</groupId>
<artifactId>javet-macos</artifactId>
<version>0.9.13</version>
<version>0.9.14</version>
</dependency>
Gradle Kotlin DSL
^^^^^^^^^^^^^^^^^

.. code-block:: kotlin
implementation("com.caoccao.javet:javet:0.9.13") // Linux or Windows
implementation("com.caoccao.javet:javet-macos:0.9.13") // Mac OS (x86_64 Only)
implementation("com.caoccao.javet:javet:0.9.14") // Linux or Windows
implementation("com.caoccao.javet:javet-macos:0.9.14") // Mac OS (x86_64 Only)
Gradle Groovy DSL
^^^^^^^^^^^^^^^^^

.. code-block:: groovy
implementation 'com.caoccao.javet:javet:0.9.13' // Linux or Windows
implementation 'com.caoccao.javet:javet-macos:0.9.13' // Mac OS (x86_64 Only)
implementation 'com.caoccao.javet:javet:0.9.14' // Linux or Windows
implementation 'com.caoccao.javet:javet-macos:0.9.14' // Mac OS (x86_64 Only)
Hello Javet
-----------
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ repositories {
}

group = "com.caoccao.javet"
version = "0.9.13"
version = "0.9.14"

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion cpp/build-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Usage for V8: sh build-linux.sh -DV8_DIR=${HOME}/v8
# Usage for Node: sh build-linux.sh -DNODE_DIR=${HOME}/node
JAVET_VERSION=0.9.13
JAVET_VERSION=0.9.14
rm -rf build
mkdir build
cd build
Expand Down
2 changes: 1 addition & 1 deletion cpp/build-macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Usage for V8: sh build-macos.sh -DV8_DIR=${HOME}/v8
# Usage for Node: sh build-macos.sh -DNODE_DIR=${HOME}/node
JAVET_VERSION=0.9.13
JAVET_VERSION=0.9.14
rm -rf build
mkdir build
cd build
Expand Down
2 changes: 1 addition & 1 deletion cpp/build-windows.cmd
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@echo off
REM Usage for V8: build -DV8_DIR=C:\v8
REM Usage for Node: build -DNODE_DIR=C:\node
SET JAVET_VERSION=0.9.13
SET JAVET_VERSION=0.9.14
rd /s/q build
mkdir build
cd build
Expand Down
12 changes: 6 additions & 6 deletions cpp/jni/javet_resource_node.rc
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,9,13,0
PRODUCTVERSION 0,9,13,0
FILEVERSION 0,9,14,0
PRODUCTVERSION 0,9,14,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -79,12 +79,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "caoccao.com"
VALUE "FileDescription", "caoccao.com"
VALUE "FileVersion", "0.9.13.0"
VALUE "InternalName", "libjavet-node-windows-x86_64.v.0.9.13.dll"
VALUE "FileVersion", "0.9.14.0"
VALUE "InternalName", "libjavet-node-windows-x86_64.v.0.9.14.dll"
VALUE "LegalCopyright", "Copyright (C) 2021"
VALUE "OriginalFilename", "libjavet-node-windows-x86_64.v.0.9.13.dll"
VALUE "OriginalFilename", "libjavet-node-windows-x86_64.v.0.9.14.dll"
VALUE "ProductName", "Javet Windows"
VALUE "ProductVersion", "0.9.13.0"
VALUE "ProductVersion", "0.9.14.0"
END
END
BLOCK "VarFileInfo"
Expand Down
12 changes: 6 additions & 6 deletions cpp/jni/javet_resource_v8.rc
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,9,13,0
PRODUCTVERSION 0,9,13,0
FILEVERSION 0,9,14,0
PRODUCTVERSION 0,9,14,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -79,12 +79,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "caoccao.com"
VALUE "FileDescription", "caoccao.com"
VALUE "FileVersion", "0.9.13.0"
VALUE "InternalName", "libjavet-v8-windows-x86_64.v.0.9.13.dll"
VALUE "FileVersion", "0.9.14.0"
VALUE "InternalName", "libjavet-v8-windows-x86_64.v.0.9.14.dll"
VALUE "LegalCopyright", "Copyright (C) 2021"
VALUE "OriginalFilename", "libjavet-v8-windows-x86_64.v.0.9.13.dll"
VALUE "OriginalFilename", "libjavet-v8-windows-x86_64.v.0.9.14.dll"
VALUE "ProductName", "Javet Windows"
VALUE "ProductVersion", "0.9.13.0"
VALUE "ProductVersion", "0.9.14.0"
END
END
BLOCK "VarFileInfo"
Expand Down
18 changes: 0 additions & 18 deletions docs/_sources/development/build.rst.txt

This file was deleted.

153 changes: 0 additions & 153 deletions docs/_sources/development/build_javet_from_scratch.rst.txt

This file was deleted.

64 changes: 0 additions & 64 deletions docs/_sources/development/build_javet_with_docker.rst.txt

This file was deleted.

Loading

0 comments on commit 48bb90a

Please sign in to comment.