Skip to content

Commit d986a29

Browse files
committed
bumped to new version
1 parent 2452764 commit d986a29

File tree

21 files changed

+252
-197
lines changed

21 files changed

+252
-197
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ You can can pull it from the central Maven repositories:
147147
<dependency>
148148
<groupId>com.github.jlangch</groupId>
149149
<artifactId>venice</artifactId>
150-
<version>1.12.78</version>
150+
<version>1.12.79</version>
151151
</dependency>
152152
```
153153

cheatsheet.html

Lines changed: 212 additions & 157 deletions
Large diffs are not rendered by default.

cheatsheet.pdf

3.89 KB
Binary file not shown.

doc/examples/repl/repl.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ REM # -------------------------------------------------------------------------
44
REM # --home
55
REM # |
66
REM # +-- libs
7-
REM # | +-- venice-1.12.78.jar
7+
REM # | +-- venice-1.12.79.jar
88
REM # | +-- jansi-1.18.jar
99
REM # |
1010
REM # +-- repl.json

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.12.78</version>
19+
<version>1.12.79</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.12.78.jar -script "(+ 1 1)"
16+
foo> java -jar venice-1.12.79.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.12.78.jar -file script.venice
38+
foo> java -jar venice-1.12.79.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.12.78.jar -file script.venice 3
58+
foo> java -jar venice-1.12.79.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.12.78.jar
98+
│ └── venice-1.12.79.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.12.78.jar -file script.venice -loadpath "/users/foo/venice/scripts"
107+
foo> java -jar libs/venice-1.12.79.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.12.78.jar
139+
libs/venice-1.12.79.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.12.78.jar
101+
└── venice-1.12.79.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.12.78.jar -app billing.zip
108+
mars$ java -jar libs/venice-1.12.79.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.12.78.jar
177+
├── venice-1.12.79.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.12.78.jar -setup -colors
61+
foo> java -jar venice-1.12.79.jar -setup -colors
6262
```
6363

6464
*Unix like OSs*

0 commit comments

Comments
 (0)