Skip to content

Commit

Permalink
bump version: JFlex 1.9.1-SNAPSHOT -> 1.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lsf37 committed Mar 11, 2023
1 parent 66aefc9 commit cf0a5eb
Show file tree
Hide file tree
Showing 83 changed files with 85 additions and 85 deletions.
4 changes: 2 additions & 2 deletions benchmark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>de.jflex</groupId>
<artifactId>jflex-parent</artifactId>
<version>1.9.1-SNAPSHOT</version>
<version>1.9.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>benchmark</artifactId>
Expand Down Expand Up @@ -57,7 +57,7 @@
<plugin>
<groupId>de.jflex</groupId>
<artifactId>jflex-maven-plugin</artifactId>
<version>1.9.1-SNAPSHOT</version>
<version>1.9.1</version>
<executions>
<execution>
<?m2e execute onConfiguration,onIncremental?>
Expand Down
2 changes: 1 addition & 1 deletion cup-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>de.jflex</groupId>
<artifactId>jflex-parent</artifactId>
<version>1.9.1-SNAPSHOT</version>
<version>1.9.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<version>1.3</version>
Expand Down
2 changes: 1 addition & 1 deletion docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# Makefile for jflex documentation (ps + pdf + html)

VERSION=1.9.1-SNAPSHOT
VERSION=1.9.1
RELEASE_DATE=11 March 2023
UNICODE_VER=12.1

Expand Down
2 changes: 1 addition & 1 deletion docs/xmanual.tex
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
\vspace*{15ex}
{\Huge \sffamily \bfseries JFlex User's Manual}\\
\bigskip
Version 1.10.0-SNAPSHOT, {\today}
Version 1.10.0, {\today}
\end{center}

\newpage
Expand Down
2 changes: 1 addition & 1 deletion jflex-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>de.jflex</groupId>
<artifactId>jflex-parent</artifactId>
<version>1.9.1-SNAPSHOT</version>
<version>1.9.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jflex-maven-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion jflex/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
This directory contains JFlex, a fast scanner generator for Java.

To run JFlex, run `bin/jflex` from the command line or double click on the
jflex-full-1.9.1-SNAPSHOT.jar file in the `lib/` directory.
jflex-full-1.9.1.jar file in the `lib/` directory.

See the manual in `doc/` or the website at <http://jflex.de> for more
information and for how to get started.
Expand Down
2 changes: 1 addition & 1 deletion jflex/bin/jflex
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
JAVA=java

# Version of JFlex to execute
JFLEX_VERSION=1.9.1-SNAPSHOT
JFLEX_VERSION=1.9.1

# end configurables
#
Expand Down
2 changes: 1 addition & 1 deletion jflex/bin/jflex.bat
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ REM Please adjust JFLEX_HOME and JFLEX_VERSION to suit your needs
REM (please do not add a trailing backslash)

if not defined JFLEX_HOME set JFLEX_HOME=C:\JFLEX
if not defined JFLEX_VERSION set JFLEX_VERSION=1.9.1-SNAPSHOT
if not defined JFLEX_VERSION set JFLEX_VERSION=1.9.1

java -Xmx128m -jar "%JFLEX_HOME%\lib\jflex-full-%JFLEX_VERSION%.jar" %*
2 changes: 1 addition & 1 deletion jflex/examples/common/include.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<property name="common.dir" value="../common" />

<!-- JFlex task -->
<property name="jflex" value="../../lib/jflex-full-1.9.1-SNAPSHOT.jar"/>
<property name="jflex" value="../../lib/jflex-full-1.9.1.jar"/>
<taskdef classname="jflex.anttask.JFlexTask" name="jflex" classpath="${jflex}"/>

<!-- ivy installer -->
Expand Down
2 changes: 1 addition & 1 deletion jflex/examples/cup-interpreter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<plugin>
<groupId>de.jflex</groupId>
<artifactId>jflex-maven-plugin</artifactId>
<version>1.9.1-SNAPSHOT</version>
<version>1.9.1</version>
<executions>
<execution>
<goals>
Expand Down
2 changes: 1 addition & 1 deletion jflex/examples/cup-java-minijava/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<plugin>
<groupId>de.jflex</groupId>
<artifactId>jflex-maven-plugin</artifactId>
<version>1.9.1-SNAPSHOT</version>
<version>1.9.1</version>
<executions>
<execution>
<goals>
Expand Down
2 changes: 1 addition & 1 deletion jflex/examples/cup-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<plugin>
<groupId>de.jflex</groupId>
<artifactId>jflex-maven-plugin</artifactId>
<version>1.9.1-SNAPSHOT</version>
<version>1.9.1</version>
<executions>
<execution>
<goals>
Expand Down
2 changes: 1 addition & 1 deletion jflex/examples/cup-lcalc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<plugin>
<groupId>de.jflex</groupId>
<artifactId>jflex-maven-plugin</artifactId>
<version>1.9.1-SNAPSHOT</version>
<version>1.9.1</version>
<executions>
<execution>
<goals>
Expand Down
2 changes: 1 addition & 1 deletion jflex/examples/simple/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ This is defined by the following section
<plugin>
<groupId>de.jflex</groupId>
<artifactId>jflex-maven-plugin</artifactId>
<version>1.9.1-SNAPSHOT</version>
<version>1.9.1</version>
<executions>
<execution>
<goals>
Expand Down
2 changes: 1 addition & 1 deletion jflex/examples/simple/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<plugin>
<groupId>de.jflex</groupId>
<artifactId>jflex-maven-plugin</artifactId>
<version>1.9.1-SNAPSHOT</version>
<version>1.9.1</version>
<executions>
<execution>
<goals>
Expand Down
2 changes: 1 addition & 1 deletion jflex/examples/standalone/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ of "hello" by "hello &lt;name&gt; !".</description>
<plugin>
<groupId>de.jflex</groupId>
<artifactId>jflex-maven-plugin</artifactId>
<version>1.9.1-SNAPSHOT</version>
<version>1.9.1</version>
<executions>
<execution>
<goals>
Expand Down
2 changes: 1 addition & 1 deletion jflex/examples/zero-reader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<plugin>
<groupId>de.jflex</groupId>
<artifactId>jflex-maven-plugin</artifactId>
<version>1.9.1-SNAPSHOT</version>
<version>1.9.1</version>
<executions>
<execution>
<goals>
Expand Down
2 changes: 1 addition & 1 deletion jflex/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>de.jflex</groupId>
<artifactId>jflex-parent</artifactId>
<version>1.9.1-SNAPSHOT</version>
<version>1.9.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>JFlex</name>
Expand Down
2 changes: 1 addition & 1 deletion jflex/src/main/java/jflex/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
*
* @author Gerwin Klein
* @author Régis Décamps
* @version JFlex 1.9.1-SNAPSHOT
* @version JFlex 1.9.1
*/
public class Main {

Expand Down
2 changes: 1 addition & 1 deletion jflex/src/main/java/jflex/anttask/JFlexTask.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* JFlex ant task.
*
* @author Rafal Mantiuk
* @version JFlex 1.9.1-SNAPSHOT
* @version JFlex 1.9.1
*/
public class JFlexTask extends Task {
private static final Pattern PACKAGE_PATTERN = Pattern.compile("package\\s+(\\S+)\\s*;");
Expand Down
2 changes: 1 addition & 1 deletion jflex/src/main/java/jflex/base/Build.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
public class Build {

/** Current JFlex version */
public static final String VERSION = "1.9.1-SNAPSHOT";
public static final String VERSION = "1.9.1";

/** If true, additional verbose debug information is produced. This is a compile time option. */
public static final boolean DEBUG = false;
Expand Down
2 changes: 1 addition & 1 deletion jflex/src/main/java/jflex/base/IntPair.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* <p>Used in NFA to represent a partial NFA by its start and end state.
*
* @author Gerwin Klein
* @version JFlex 1.9.1-SNAPSHOT
* @version JFlex 1.9.1
*/
@AutoValue
public abstract class IntPair {
Expand Down
2 changes: 1 addition & 1 deletion jflex/src/main/java/jflex/base/Pair.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Generic immutable pair.
*
* @author Gerwin Klein
* @version JFlex 1.9.1-SNAPSHOT
* @version JFlex 1.9.1
*/
public class Pair<A, B> {
public final A fst;
Expand Down
2 changes: 1 addition & 1 deletion jflex/src/main/java/jflex/chars/Interval.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*
* @author Gerwin Klein
* @author Régis Décamps
* @version JFlex 1.9.1-SNAPSHOT
* @version JFlex 1.9.1
*/
public final class Interval implements Iterable<Integer> {

Expand Down
2 changes: 1 addition & 1 deletion jflex/src/main/java/jflex/core/Action.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* <p>It stores the Java code as String together with a priority (line number in the specification).
*
* @author Gerwin Klein
* @version JFlex 1.9.1-SNAPSHOT
* @version JFlex 1.9.1
*/
public final class Action {

Expand Down
2 changes: 1 addition & 1 deletion jflex/src/main/java/jflex/core/EOFActions.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* A simple table to store EOF actions for each lexical state.
*
* @author Gerwin Klein
* @version JFlex 1.9.1-SNAPSHOT
* @version JFlex 1.9.1
*/
public class EOFActions {

Expand Down
2 changes: 1 addition & 1 deletion jflex/src/main/java/jflex/core/Macros.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* <p>Maps macros to their (expanded) definitions, detects cycles and unused macros.
*
* @author Gerwin Klein
* @version JFlex 1.9.1-SNAPSHOT
* @version JFlex 1.9.1
*/
public final class Macros {

Expand Down
2 changes: 1 addition & 1 deletion jflex/src/main/java/jflex/core/NFA.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* <p>Contains algorithms RegExp → NFA.
*
* @author Gerwin Klein
* @version JFlex 1.9.1-SNAPSHOT
* @version JFlex 1.9.1
*/
public final class NFA {

Expand Down
2 changes: 1 addition & 1 deletion jflex/src/main/java/jflex/core/RegExp.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* <p>This base class has no content other than its type.
*
* @author Gerwin Klein
* @version JFlex 1.9.1-SNAPSHOT
* @version JFlex 1.9.1
*/
public class RegExp {

Expand Down
2 changes: 1 addition & 1 deletion jflex/src/main/java/jflex/core/RegExp1.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* <p>For instance: a* is new RegExp1(sym.STAR, 'a');
*
* @author Gerwin Klein
* @version JFlex 1.9.1-SNAPSHOT
* @version JFlex 1.9.1
*/
public class RegExp1 extends RegExp {

Expand Down
2 changes: 1 addition & 1 deletion jflex/src/main/java/jflex/core/RegExp2.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Regular expression with two children (e.g. a | b)
*
* @author Gerwin Klein
* @version JFlex 1.9.1-SNAPSHOT
* @version JFlex 1.9.1
*/
public class RegExp2 extends RegExp {

Expand Down
2 changes: 1 addition & 1 deletion jflex/src/main/java/jflex/core/RegExpException.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* <p>If this is encountered, this means there is a bug.
*
* @author Gerwin Klein
* @version JFlex 1.9.1-SNAPSHOT
* @version JFlex 1.9.1
*/
// TODO Move all regexp related code to jflex.regexp
// This class lives in package jflex.core, because the reference to jflex.core.RegExp would
Expand Down
2 changes: 1 addition & 1 deletion jflex/src/main/java/jflex/core/RegExps.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* Stores all rules of the specification for later access in the RegExp to NFA conversion.
*
* @author Gerwin Klein
* @version JFlex 1.9.1-SNAPSHOT
* @version JFlex 1.9.1
*/
public class RegExps {

Expand Down
2 changes: 1 addition & 1 deletion jflex/src/main/java/jflex/core/SemCheck.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* Performs simple semantic analysis on regular expressions.
*
* @author Gerwin Klein
* @version JFlex 1.9.1-SNAPSHOT
* @version JFlex 1.9.1
*/
public final class SemCheck {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* <p>All characters of the interval must belong to the same character class.
*
* @author Gerwin Klein
* @version JFlex 1.9.1-SNAPSHOT
* @version JFlex 1.9.1
*/
public class CharClassInterval {

Expand Down
2 changes: 1 addition & 1 deletion jflex/src/main/java/jflex/core/unicode/CharClasses.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* Character Classes.
*
* @author Gerwin Klein
* @version JFlex 1.9.1-SNAPSHOT
* @version JFlex 1.9.1
*/
public class CharClasses {

Expand Down
2 changes: 1 addition & 1 deletion jflex/src/main/java/jflex/core/unicode/IntCharSet.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
*
* @author Gerwin Klein
* @author Régis Décamps
* @version JFlex 1.9.1-SNAPSHOT
* @version JFlex 1.9.1
*/
public final class IntCharSet implements Iterable<Integer> {

Expand Down
2 changes: 1 addition & 1 deletion jflex/src/main/java/jflex/dfa/DFA.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* Deterministic finite automata representation in JFlex. Contains minimization algorithm.
*
* @author Gerwin Klein
* @version JFlex 1.9.1-SNAPSHOT
* @version JFlex 1.9.1
*/
public class DFA {

Expand Down
2 changes: 1 addition & 1 deletion jflex/src/main/java/jflex/dfa/StatePairList.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* A list of pairs of states. Used in old DFA minimization.
*
* @author Gerwin Klein
* @version JFlex 1.9.1-SNAPSHOT
* @version JFlex 1.9.1
*/
public final class StatePairList {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* This Exception is used in class CharClasses.
*
* @author Gerwin Klein
* @version JFlex 1.9.1-SNAPSHOT
* @version JFlex 1.9.1
*/
public class CharClassException extends RuntimeException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Thrown when code generation has to be aborted.
*
* @author Gerwin Klein
* @version JFlex 1.9.1-SNAPSHOT
* @version JFlex 1.9.1
*/
public class GeneratorException extends RuntimeException {

Expand Down
2 changes: 1 addition & 1 deletion jflex/src/main/java/jflex/exceptions/MacroException.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* This Exception is used in the macro expander to report cycles or undefined macro usages.
*
* @author Gerwin Klein
* @version JFlex 1.9.1-SNAPSHOT
* @version JFlex 1.9.1
*/
public class MacroException extends Exception {

Expand Down
2 changes: 1 addition & 1 deletion jflex/src/main/java/jflex/exceptions/SilentExit.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Signals a silent exit (no statistics printout).
*
* @author Gerwin Klein
* @version JFlex 1.9.1-SNAPSHOT
* @version JFlex 1.9.1
*/
public class SilentExit extends Exception {

Expand Down
Loading

0 comments on commit cf0a5eb

Please sign in to comment.