Skip to content

Commit

Permalink
bumped to new version
Browse files Browse the repository at this point in the history
  • Loading branch information
jlangch committed Oct 10, 2024
1 parent 1d34abb commit 63aef3a
Show file tree
Hide file tree
Showing 19 changed files with 2,483 additions and 1,672 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ You can can pull it from the central Maven repositories:
<dependency>
<groupId>com.github.jlangch</groupId>
<artifactId>venice</artifactId>
<version>1.12.33</version>
<version>1.12.34</version>
</dependency>
```

Expand Down
4,079 changes: 2,445 additions & 1,634 deletions cheatsheet.html

Large diffs are not rendered by default.

Binary file modified cheatsheet.pdf
Binary file not shown.
4 changes: 2 additions & 2 deletions doc/maven-central.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion doc/readme/build-dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies {
<dependency>
<groupId>com.github.jlangch</groupId>
<artifactId>venice</artifactId>
<version>1.12.33</version>
<version>1.12.34</version>
</dependency>
</dependencies>
```
10 changes: 5 additions & 5 deletions doc/readme/execute-scripts.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
## Run a script

```text
foo> java -jar venice-1.12.33.jar -script "(+ 1 1)"
foo> java -jar venice-1.12.34.jar -script "(+ 1 1)"
=> 2
```

Expand All @@ -31,7 +31,7 @@ File "script.venice":
run:

```text
foo> java -jar venice-1.12.33.jar -file script.venice
foo> java -jar venice-1.12.34.jar -file script.venice
=> 19.634954084936208
```

Expand All @@ -50,7 +50,7 @@ File "script.venice":
run:

```text
foo> java -jar venice-1.12.33.jar -file script.venice 3
foo> java -jar venice-1.12.34.jar -file script.venice 3
=> 4
```

Expand Down Expand Up @@ -90,7 +90,7 @@ Files:
/users/foo/venice
├── script.venice
├── libs
│ └── venice-1.12.33.jar
│ └── venice-1.12.34.jar
└── scripts
└── test.venice
```
Expand All @@ -99,7 +99,7 @@ Run:

```text
foo> cd /users/foo/venice
foo> java -jar libs/venice-1.12.33.jar -file script.venice -loadpath "/users/foo/venice/scripts"
foo> java -jar libs/venice-1.12.34.jar -file script.venice -loadpath "/users/foo/venice/scripts"
```

The script loads "test.venice" from "/users/foo/venice/scripts/test.venice".
Expand Down
2 changes: 1 addition & 1 deletion doc/readme/ext-tomcat.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ REPL classpath:
libs/jakarta.annotation-api-2.1.1.jar
libs/jansi-2.4.0.jar
libs/tomcat-embed-core-10.1.1.jar
libs/venice-1.12.33.jar
libs/venice-1.12.34.jar
```


Expand Down
6 changes: 3 additions & 3 deletions doc/readme/multi-file-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,14 +98,14 @@ foo
├── billing.zip
└── libs
├── ...
└── venice-1.12.33.jar
└── venice-1.12.34.jar
```

It can be started from a terminal with

```shell
mars$ cd ~/foo
mars$ java -jar libs/venice-1.12.33.jar -app billing.zip
mars$ java -jar libs/venice-1.12.34.jar -app billing.zip
```

or
Expand Down Expand Up @@ -174,7 +174,7 @@ The billing application JAR may be deployed to a file structure like
foo
└── libs
├── billing.jar
├── venice-1.12.33.jar
├── venice-1.12.34.jar
└── openpdf-1.3.22.jar
```

Expand Down
2 changes: 1 addition & 1 deletion doc/readme/openai.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Add the key to the 'repl.env' file in the REPL home directory.
with:

```
foo> java -jar venice-1.12.33.jar -setup -colors
foo> java -jar venice-1.12.34.jar -setup -colors
```

*Unix like OSs*
Expand Down
4 changes: 2 additions & 2 deletions doc/readme/repl-advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ list list* list? list-comp
```text
REPL_HOME
├── libs
│ ├── venice-1.12.33.jar
│ ├── venice-1.12.34.jar
│ ├── jansi-2.4.1.jar
│ └── repl.json
├── tools
Expand Down Expand Up @@ -182,7 +182,7 @@ venice> !classpath
REPL classpath:
libs
libs/jansi-2.4.1.jar
libs/venice-1.12.33.jar
libs/venice-1.12.34.jar
```


Expand Down
2 changes: 1 addition & 1 deletion doc/readme/shell-scripts.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ A larger example that zips Tomcat log files on a monthly base:
;; -------------------------------------------------------------------------------
;; Zips the last month's Tomcat log files
;;
;; > java -jar venice-1.12.33.jar -file zip-tomcat-logs.venice ./logs
;; > java -jar venice-1.12.34.jar -file zip-tomcat-logs.venice ./logs
;; -------------------------------------------------------------------------------
(do
(defn tomcat-log-file-filter [prefix year month]
Expand Down
10 changes: 5 additions & 5 deletions doc/readme/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ The Venice JAR published to Maven is compiled with Java 8. Nevertheless Venice i

### 2. Get the Venice JAR file

Manually download the JAR from Maven: [Venice JAR](https://search.maven.org/artifact/com.github.jlangch/venice/1.12.33/jar)
Manually download the JAR from Maven: [Venice JAR](https://search.maven.org/artifact/com.github.jlangch/venice/1.12.34/jar)

or download it with `curl`:

```
curl "https://repo1.maven.org/maven2/com/github/jlangch/venice/1.12.33/venice-1.12.33.jar" --output ./venice-1.12.33.jar
curl "https://repo1.maven.org/maven2/com/github/jlangch/venice/1.12.34/venice-1.12.34.jar" --output ./venice-1.12.34.jar
```


Expand All @@ -43,7 +43,7 @@ Open a terminal, move to the directory the Venice JAR is located, and start
the REPL in setup mode:

```text
foo> java -jar venice-1.12.33.jar -setup -colors
foo> java -jar venice-1.12.34.jar -setup -colors
```

For a REPL run in a darkmode terminal use the option `-colors-dark` instead of
Expand Down Expand Up @@ -94,7 +94,7 @@ venice>
```text
REPL_HOME
├── libs
│ ├── venice-1.12.33.jar
│ ├── venice-1.12.34.jar
│ ├── jansi-2.4.1.jar
│ └── repl.json
├── tools
Expand All @@ -114,7 +114,7 @@ REPL_HOME
```text
REPL_HOME
├── libs
│ ├── venice-1.12.33.jar
│ ├── venice-1.12.34.jar
│ ├── jansi-2.4.1.jar
│ └── repl.json
├── tools
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=1.12.34-SNAPSHOT
version=1.12.34
20 changes: 10 additions & 10 deletions src/main/java/com/github/jlangch/venice/Launcher.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
* <p>The launcher is configured as the Venice JAR's main-class.
*
* <p>Running scripts:
* <pre>java -jar venice-1.12.33.jar -script "(+ 1 1)"</pre>
* <pre>java -jar venice-1.12.34.jar -script "(+ 1 1)"</pre>
*
* <p>Running a REPL:
* <pre>
Expand Down Expand Up @@ -90,10 +90,10 @@
* -repl start a REPL
*
* -setup setup a REPL
* E.g.: java -jar venice-1.12.33.jar -setup -colors \n" +
* java -jar venice-1.12.33.jar -setup -colors-light \n" +
* java -jar venice-1.12.33.jar -setup -colors-dark \n" +
* java -jar venice-1.12.33.jar -setup -colors -dir /Users/foo/repl \n" +
* E.g.: java -jar venice-1.12.34.jar -setup -colors \n" +
* java -jar venice-1.12.34.jar -setup -colors-light \n" +
* java -jar venice-1.12.34.jar -setup -colors-dark \n" +
* java -jar venice-1.12.34.jar -setup -colors -dir /Users/foo/repl \n" +
*
* -help prints a help
* </pre>
Expand Down Expand Up @@ -262,7 +262,7 @@ private static void printHelp() {
"The launcher is configured as the Venice JAR's main-class. \n" +
"\n" +
"Running scripts: \n" +
" java -jar venice-1.12.33.jar -script \"(+ 1 1)\" \n" +
" java -jar venice-1.12.34.jar -script \"(+ 1 1)\" \n" +
"\n" +
"Running a REPL: \n" +
" java \\ \n" +
Expand Down Expand Up @@ -300,10 +300,10 @@ private static void printHelp() {
" E.g.: -app-repl /Users/foo/tools/dbclient.venice\n" +
"\n" +
" -setup setup a REPL \n" +
" E.g.: java -jar venice-1.12.33.jar -setup -colors \n" +
" java -jar venice-1.12.33.jar -setup -colors-light \n" +
" java -jar venice-1.12.33.jar -setup -colors-dark \n" +
" java -jar venice-1.12.33.jar -setup -colors -dir /Users/foo/repl \n" +
" E.g.: java -jar venice-1.12.34.jar -setup -colors \n" +
" java -jar venice-1.12.34.jar -setup -colors-light \n" +
" java -jar venice-1.12.34.jar -setup -colors-dark \n" +
" java -jar venice-1.12.34.jar -setup -colors -dir /Users/foo/repl \n" +
"\n" +
" -help prints a help \n" +
"\n" +
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/license.txt
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@
VENICE SUBCOMPONENTS
-----------------------------------------------------------------------

The Venice Release 1.12.33 includes a number of subcomponents with
The Venice Release 1.12.34 includes a number of subcomponents with
separate copyright notices and license terms. The product that includes
this file does not necessarily use all the open source subcomponents
referred to below. Your use of the source code for these subcomponents
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/notice.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Venice Release 1.12.33
Venice Release 1.12.34

Copyright (c) 2017-2024 Venice

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/com/github/jlangch/venice/app.venice
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
to "billing.venice".

The app can be run from the command line as:¶
`> java -jar venice-1.12.33.jar -app billing.zip`¶
`> java -jar venice-1.12.34.jar -app billing.zip`¶
Venice reads the archive and loads the archive's main file.

Or with additional Java libraries (all JARs in 'libs' dir):¶
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ REM # REPL_HOME
REM # |
REM # +-- libs
REM # | +-- repl.json
REM # | +-- venice-1.12.33.jar
REM # | +-- venice-1.12.34.jar
REM # |
REM # +-- scripts
REM # | +-- script-1.venice
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/com/github/jlangch/venice/setup/repl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# |
# +-- libs
# | +-- repl.json
# | +-- venice-1.12.33.jar
# | +-- venice-1.12.34.jar
# |
# +-- scripts
# | +-- script-1.venice
Expand Down

0 comments on commit 63aef3a

Please sign in to comment.