Skip to content

Commit 31dd21d

Browse files
committed
bump version.
1 parent 8812451 commit 31dd21d

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ to the `<dependencies>` element in your **pom.xml** file.
3333
<dependency>
3434
<groupId>org.antlr</groupId>
3535
<artifactId>ST4</artifactId>
36-
<version>4.2</version>
36+
<version>4.3</version>
3737
<scope>compile</scope>
3838
</dependency>
3939
```
@@ -47,7 +47,7 @@ dependecies {
4747
// ...
4848
4949
// https://mvnrepository.com/artifact/org.antlr/ST4
50-
compile group: 'org.antlr', name: 'ST4', version: '4.2'
50+
compile group: 'org.antlr', name: 'ST4', version: '4.3'
5151
}
5252
```
5353

doc/java.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
## Installation
44

5-
All you need to do is get the StringTemplate jar into your CLASSPATH as well as its dependent ANTLR jar. [Download Java StringTemplate 4.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
5+
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
66

77
```bash
8-
$ export CLASSPATH="/usr/local/lib/ST-4.1.jar:$CLASSPATH"
8+
$ export CLASSPATH="/usr/local/lib/ST-4.3.jar:$CLASSPATH"
99
```
1010

1111
Java will now see all the libraries necessary to execute ST stuff. Also, check out the [StringTemplate repo](https://github.com/antlr/stringtemplate4).

doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#---------------------------------------------------------------------------
66
DOXYFILE_ENCODING = UTF-8
77
PROJECT_NAME = "StringTemplate 4 API"
8-
PROJECT_NUMBER = 4.0.6
8+
PROJECT_NUMBER = 4.3
99
OUTPUT_DIRECTORY = api
1010
CREATE_SUBDIRS = NO
1111
OUTPUT_LANGUAGE = English

src/org/stringtemplate/v4/ST.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
* says.</p>
6969
*/
7070
public class ST {
71-
public final static String VERSION = "4.1";
71+
public final static String VERSION = "4.3";
7272

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

0 commit comments

Comments
 (0)