Skip to content

Commit

Permalink
set new version
Browse files Browse the repository at this point in the history
  • Loading branch information
parrt committed Jun 23, 2020
1 parent 9817c21 commit d403737
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions doc/java.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

## Installation

All you need to do is get the StringTemplate jar into your CLASSPATH as well as its dependent ANTLR jar. [Download Java StringTemplate 4.3 binary jar](http://www.stringtemplate.org/download.html) and put into your favorite lib directory such as `/usr/local/lib` on UNIX. Add to your CLASSPATH. On UNIX that looks like
All you need to do is get the StringTemplate jar into your CLASSPATH as well as its dependent ANTLR jar. [Download Java StringTemplate 4.3.1 binary jar](http://www.stringtemplate.org/download.html) and put into your favorite lib directory such as `/usr/local/lib` on UNIX. Add to your CLASSPATH. On UNIX that looks like

```bash
$ export CLASSPATH="/usr/local/lib/ST-4.3.jar:$CLASSPATH"
$ export CLASSPATH="/usr/local/lib/ST-4.3.1.jar:$CLASSPATH"
```

Java will now see all the libraries necessary to execute ST stuff. Also, check out the [StringTemplate repo](https://github.com/antlr/stringtemplate4).
Expand Down
2 changes: 1 addition & 1 deletion doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#---------------------------------------------------------------------------
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = "StringTemplate 4 API"
PROJECT_NUMBER = 4.3
PROJECT_NUMBER = 4.3.1
OUTPUT_DIRECTORY = api
CREATE_SUBDIRS = NO
OUTPUT_LANGUAGE = English
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<artifactId>ST4</artifactId>
<packaging>jar</packaging>

<version>4.4-SNAPSHOT</version>
<version>4.3.1-SNAPSHOT</version>

<name>StringTemplate 4</name>
<description>StringTemplate is a java template engine for generating source code,
Expand Down
2 changes: 1 addition & 1 deletion src/org/stringtemplate/v4/ST.java
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
* says.</p>
*/
public class ST {
public final static String VERSION = "4.3";
public final static String VERSION = "4.3.1";

/** {@code <@r()>}, {@code <@r>...<@end>}, and {@code @t.r() ::= "..."} defined manually by coder */
public enum RegionType {
Expand Down

0 comments on commit d403737

Please sign in to comment.