Skip to content

Commit 2026cc5

Browse files
committed
bumped to new version
1 parent 94960e5 commit 2026cc5

23 files changed

Lines changed: 3541 additions & 2754 deletions

ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55

66

77

8-
## [1.13.4] - 2026-05-xx
8+
## [1.13.4] - 2026-05-09
99

1010
### Enhancements
1111

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,15 @@ Venice requires Java 8 or newer.
7878
Grab the Venice JAR from Maven:
7979

8080
``` shell
81-
curl -O https://repo1.maven.org/maven2/com/github/jlangch/venice/1.13.3/venice-1.13.3.jar
81+
curl -O https://repo1.maven.org/maven2/com/github/jlangch/venice/1.13.4/venice-1.13.4.jar
8282
```
8383

8484

8585

8686
Setup a REPL in the directory `./repl`:
8787

8888
``` shell
89-
java -jar venice-1.13.3.jar -setup -colors -dir ./repl
89+
java -jar venice-1.13.4.jar -setup -colors -dir ./repl
9090
```
9191

9292

@@ -192,7 +192,7 @@ You can can pull it from the central Maven repositories:
192192
<dependency>
193193
<groupId>com.github.jlangch</groupId>
194194
<artifactId>venice</artifactId>
195-
<version>1.13.3</version>
195+
<version>1.13.4</version>
196196
</dependency>
197197
```
198198

cheatsheet.html

Lines changed: 3492 additions & 2705 deletions
Large diffs are not rendered by default.

cheatsheet.pdf

48.8 KB
Binary file not shown.

doc/maven-central.svg

Lines changed: 2 additions & 2 deletions
Loading

doc/readme/build-dependencies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dependencies {
1616
<dependency>
1717
<groupId>com.github.jlangch</groupId>
1818
<artifactId>venice</artifactId>
19-
<version>1.13.3</version>
19+
<version>1.13.4</version>
2020
</dependency>
2121
</dependencies>
2222
```

doc/readme/execute-scripts.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
## Run a script
1414

1515
``` text
16-
foo> java -jar venice-1.13.3.jar -script "(+ 1 1)"
16+
foo> java -jar venice-1.13.4.jar -script "(+ 1 1)"
1717
=> 2
1818
```
1919

@@ -35,7 +35,7 @@ File "script.venice":
3535
run:
3636

3737
``` text
38-
foo> java -jar venice-1.13.3.jar -file script.venice
38+
foo> java -jar venice-1.13.4.jar -file script.venice
3939
=> 19.634954084936208
4040
```
4141

@@ -55,7 +55,7 @@ File "script.venice":
5555
run:
5656

5757
``` text
58-
foo> java -jar venice-1.13.3.jar -file script.venice 3
58+
foo> java -jar venice-1.13.4.jar -file script.venice 3
5959
=> 4
6060
```
6161

@@ -95,7 +95,7 @@ Files:
9595
/users/foo/venice
9696
├── script.venice
9797
├── libs
98-
│ └── venice-1.13.3.jar
98+
│ └── venice-1.13.4.jar
9999
└── scripts
100100
└── test.venice
101101
```
@@ -104,7 +104,7 @@ Run:
104104

105105
``` text
106106
foo> cd /users/foo/venice
107-
foo> java -jar libs/venice-1.13.3.jar -file script.venice -loadpath "/users/foo/venice/scripts"
107+
foo> java -jar libs/venice-1.13.4.jar -file script.venice -loadpath "/users/foo/venice/scripts"
108108
```
109109

110110
The script loads "test.venice" from "/users/foo/venice/scripts/test.venice".

doc/readme/ext-tomcat.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ REPL classpath:
136136
libs/jakarta.annotation-api-2.1.1.jar
137137
libs/jansi-2.4.0.jar
138138
libs/tomcat-embed-core-10.1.1.jar
139-
libs/venice-1.13.3.jar
139+
libs/venice-1.13.4.jar
140140
```
141141

142142

doc/readme/multi-file-app.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,14 +98,14 @@ foo
9898
├── billing.zip
9999
└── libs
100100
├── ...
101-
└── venice-1.13.3.jar
101+
└── venice-1.13.4.jar
102102
```
103103

104104
It can be started from a terminal with
105105

106106
```shell
107107
mars$ cd ~/foo
108-
mars$ java -jar libs/venice-1.13.3.jar -app billing.zip
108+
mars$ java -jar libs/venice-1.13.4.jar -app billing.zip
109109
```
110110

111111
or
@@ -174,7 +174,7 @@ The billing application JAR may be deployed to a file structure like
174174
foo
175175
└── libs
176176
├── billing.jar
177-
├── venice-1.13.3.jar
177+
├── venice-1.13.4.jar
178178
└── openpdf-1.3.22.jar
179179
```
180180

doc/readme/openai.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Add the key to the 'repl.env' file in the REPL home directory.
5858
with:
5959

6060
```
61-
foo> java -jar venice-1.13.3.jar -setup -colors
61+
foo> java -jar venice-1.13.4.jar -setup -colors
6262
```
6363

6464
*Unix like OSs*

0 commit comments

Comments
 (0)