Skip to content

Commit 3624cbb

Browse files
committed
bump version
1 parent 42db89a commit 3624cbb

File tree

5 files changed

+56
-51
lines changed

5 files changed

+56
-51
lines changed

.github/workflows/lint_test_compile.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Deno
1515
uses: denoland/setup-deno@v2
1616
with:
17-
deno-version: "2.3.5"
17+
deno-version: "2.4.0"
1818

1919
- name: Install dependencies
2020
run: |
@@ -35,7 +35,7 @@ jobs:
3535
- name: Set up Node.js
3636
uses: denoland/setup-deno@v2
3737
with:
38-
deno-version: "2.x"
38+
deno-version: "2.4.0"
3939

4040
- name: Install dependencies
4141
run: |
@@ -53,7 +53,7 @@ jobs:
5353
- name: Set up Node.js
5454
uses: denoland/setup-deno@v2
5555
with:
56-
deno-version: "2.x"
56+
deno-version: "2.4.0"
5757

5858
- name: Install dependencies
5959
run: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Deno
1717
uses: denoland/setup-deno@v2
1818
with:
19-
deno-version: "2.3.5"
19+
deno-version: "2.4.0"
2020

2121
- name: Get new version and bump deno.json
2222
id: get_version

deno.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.13",
2+
"version": "1.0.14",
33
"name": "@napi/cli",
44
"exports": "./src/index.ts",
55
"nodeModulesDir": "auto",
@@ -9,6 +9,7 @@
99
"@langchain/anthropic": "npm:@langchain/anthropic@^0.3.23",
1010
"@langchain/core": "npm:@langchain/core@^0.3.61",
1111
"@langchain/google-genai": "npm:@langchain/google-genai@^0.2.14",
12+
"@langchain/google-vertexai": "npm:@langchain/google-vertexai@^0.2.14",
1213
"@langchain/langgraph": "npm:@langchain/langgraph@^0.3.5",
1314
"@langchain/openai": "npm:@langchain/openai@^0.5.15",
1415
"@oak/oak": "jsr:@oak/oak@^17.1.4",

examples/csharp/EndpointExample/Properties/launchSettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{
1+
{
22
"$schema": "https://json.schemastore.org/launchsettings.json",
33
"profiles": {
44
"http": {

examples/java/websocket/pom.xml

Lines changed: 49 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,51 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3-
<modelVersion>4.0.0</modelVersion>
4-
<artifactId>websocket</artifactId>
5-
<parent>
6-
<!-- Your own application should inherit from spring-boot-starter-parent -->
7-
<groupId>org.springframework.boot</groupId>
8-
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>1.0.2.RELEASE</version>
10-
</parent>
11-
<groupId>napi</groupId>
12-
<name>Spring Boot WebSocket Sample</name>
13-
<description>Spring Boot WebSocket Sample</description>
14-
<version>1.0-SNAPSHOT</version>
15-
<url>http://projects.spring.io/spring-boot/</url>
16-
<organization>
17-
<name>Pivotal Software, Inc.</name>
18-
<url>http://www.spring.io</url>
19-
</organization>
20-
<properties>
21-
<main.basedir>${basedir}/../..</main.basedir>
22-
<java.version>1.7</java.version>
23-
</properties>
24-
<dependencies>
25-
<dependency>
26-
<groupId>org.springframework.boot</groupId>
27-
<artifactId>spring-boot-starter-websocket</artifactId>
28-
</dependency>
29-
<dependency>
30-
<groupId>org.springframework.boot</groupId>
31-
<artifactId>spring-boot-starter-actuator</artifactId>
32-
</dependency>
33-
<dependency>
34-
<groupId>org.springframework.boot</groupId>
35-
<artifactId>spring-boot-starter-test</artifactId>
36-
<scope>test</scope>
37-
</dependency>
38-
</dependencies>
39-
<build>
40-
<plugins>
41-
<plugin>
42-
<groupId>org.springframework.boot</groupId>
43-
<artifactId>spring-boot-maven-plugin</artifactId>
44-
</plugin>
45-
</plugins>
46-
</build>
2+
<project
3+
xmlns="http://maven.apache.org/POM/4.0.0"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
6+
>
7+
<modelVersion>4.0.0</modelVersion>
8+
<artifactId>websocket</artifactId>
9+
<parent>
10+
<!-- Your own application should inherit from spring-boot-starter-parent -->
11+
<groupId>org.springframework.boot</groupId>
12+
<artifactId>spring-boot-starter-parent</artifactId>
13+
<version>1.0.2.RELEASE</version>
14+
</parent>
15+
<groupId>napi</groupId>
16+
<name>Spring Boot WebSocket Sample</name>
17+
<description>Spring Boot WebSocket Sample</description>
18+
<version>1.0-SNAPSHOT</version>
19+
<url>http://projects.spring.io/spring-boot/</url>
20+
<organization>
21+
<name>Pivotal Software, Inc.</name>
22+
<url>http://www.spring.io</url>
23+
</organization>
24+
<properties>
25+
<main.basedir>${basedir}/../..</main.basedir>
26+
<java.version>1.7</java.version>
27+
</properties>
28+
<dependencies>
29+
<dependency>
30+
<groupId>org.springframework.boot</groupId>
31+
<artifactId>spring-boot-starter-websocket</artifactId>
32+
</dependency>
33+
<dependency>
34+
<groupId>org.springframework.boot</groupId>
35+
<artifactId>spring-boot-starter-actuator</artifactId>
36+
</dependency>
37+
<dependency>
38+
<groupId>org.springframework.boot</groupId>
39+
<artifactId>spring-boot-starter-test</artifactId>
40+
<scope>test</scope>
41+
</dependency>
42+
</dependencies>
43+
<build>
44+
<plugins>
45+
<plugin>
46+
<groupId>org.springframework.boot</groupId>
47+
<artifactId>spring-boot-maven-plugin</artifactId>
48+
</plugin>
49+
</plugins>
50+
</build>
4751
</project>

0 commit comments

Comments
 (0)