Skip to content

Commit

Permalink
bump version: JFlex 1.8.0-SNAPSHOT -> 1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lsf37 committed Feb 26, 2020
1 parent ef51826 commit 91f5845
Show file tree
Hide file tree
Showing 87 changed files with 145 additions and 145 deletions.
4 changes: 2 additions & 2 deletions benchmark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.jflex</groupId>
<artifactId>jflex-parent</artifactId>
<version>1.8.0-SNAPSHOT</version>
<version>1.8.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>benchmark</artifactId>
Expand Down Expand Up @@ -55,7 +55,7 @@
<plugin>
<groupId>de.jflex</groupId>
<artifactId>jflex-maven-plugin</artifactId>
<version>1.8.0-SNAPSHOT</version>
<version>1.8.0</version>
<executions>
<execution>
<goals>
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 @@ -3,7 +3,7 @@
<parent>
<groupId>de.jflex</groupId>
<artifactId>jflex-parent</artifactId>
<version>1.8.0-SNAPSHOT</version>
<version>1.8.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<version>1.1</version>
Expand Down
2 changes: 1 addition & 1 deletion docs/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Makefile for jflex documentation (ps + pdf + html)

VERSION=1.8.0-SNAPSHOT
VERSION=1.8.0
RELEASE_DATE=26 February 2020
UNICODE_VER=12.1

Expand Down
2 changes: 1 addition & 1 deletion docs/docs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

load("@bazel_pandoc//:pandoc.bzl", "pandoc")

VERSION = "1.8.0-SNAPSHOT"
VERSION = "1.8.0"

RELEASE_DATE = "21 September 2018"

Expand Down
2 changes: 1 addition & 1 deletion docs/xmanual.tex
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
\vspace*{15ex}
{\Huge \sffamily \bfseries JFlex User's Manual}\\
\bigskip
Version 1.8.0-SNAPSHOT, {\today}
Version 1.8.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 @@ -4,7 +4,7 @@
<parent>
<groupId>de.jflex</groupId>
<artifactId>jflex-parent</artifactId>
<version>1.8.0-SNAPSHOT</version>
<version>1.8.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jflex-maven-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion jflex-unicode-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.jflex</groupId>
<artifactId>jflex-parent</artifactId>
<version>1.8.0-SNAPSHOT</version>
<version>1.8.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jflex-unicode-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 @@ -3,7 +3,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.8.0-SNAPSHOT.jar file in the `lib/` directory.
jflex-full-1.8.0.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 @@ -19,7 +19,7 @@
JAVA=java

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

# 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 @@ -3,6 +3,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.8.0-SNAPSHOT
if not defined JFLEX_VERSION set JFLEX_VERSION=1.8.0

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 @@ -13,7 +13,7 @@
<property name="common.dir" value="../common" />

<!-- JFlex task -->
<property name="jflex" value="../../lib/jflex-full-1.8.0-SNAPSHOT.jar"/>
<property name="jflex" value="../../lib/jflex-full-1.8.0.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 @@ -41,7 +41,7 @@
<plugin>
<groupId>de.jflex</groupId>
<artifactId>jflex-maven-plugin</artifactId>
<version>1.8.0-SNAPSHOT</version>
<version>1.8.0</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 @@ -39,7 +39,7 @@
<plugin>
<groupId>de.jflex</groupId>
<artifactId>jflex-maven-plugin</artifactId>
<version>1.8.0-SNAPSHOT</version>
<version>1.8.0</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 @@ -41,7 +41,7 @@
<plugin>
<groupId>de.jflex</groupId>
<artifactId>jflex-maven-plugin</artifactId>
<version>1.8.0-SNAPSHOT</version>
<version>1.8.0</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 @@ -42,7 +42,7 @@
<plugin>
<groupId>de.jflex</groupId>
<artifactId>jflex-maven-plugin</artifactId>
<version>1.8.0-SNAPSHOT</version>
<version>1.8.0</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 @@ -39,7 +39,7 @@
<plugin>
<groupId>de.jflex</groupId>
<artifactId>jflex-maven-plugin</artifactId>
<version>1.8.0-SNAPSHOT</version>
<version>1.8.0</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 @@ -37,7 +37,7 @@ of "hello" by "hello &lt;name&gt; !".</description>
<plugin>
<groupId>de.jflex</groupId>
<artifactId>jflex-maven-plugin</artifactId>
<version>1.8.0-SNAPSHOT</version>
<version>1.8.0</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 @@ -26,7 +26,7 @@
<plugin>
<groupId>de.jflex</groupId>
<artifactId>jflex-maven-plugin</artifactId>
<version>1.8.0-SNAPSHOT</version>
<version>1.8.0</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 @@ -5,7 +5,7 @@
<parent>
<groupId>de.jflex</groupId>
<artifactId>jflex-parent</artifactId>
<version>1.8.0-SNAPSHOT</version>
<version>1.8.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>JFlex</name>
Expand Down
2 changes: 1 addition & 1 deletion jflex/src/main/cup/LexParse.cup
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.8.0-SNAPSHOT *
* JFlex 1.8.0 *
* Copyright (C) 1998-2018 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/Main.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.8.0-SNAPSHOT *
* JFlex 1.8.0 *
* Copyright (C) 1998-2018 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand Down Expand Up @@ -40,7 +40,7 @@
*
* @author Gerwin Klein
* @author Régis Décamps
* @version JFlex 1.8.0-SNAPSHOT
* @version JFlex 1.8.0
*/
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 @@ -29,7 +29,7 @@
* JFlex ant task.
*
* @author Rafal Mantiuk
* @version JFlex 1.8.0-SNAPSHOT
* @version JFlex 1.8.0
*/
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 @@ -3,7 +3,7 @@
public class Build {

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

/** If true, additional verbose debug information is produced. This is a compile time option. */
public static final boolean DEBUG = false;
Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/base/IntPair.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.8.0-SNAPSHOT *
* JFlex 1.8.0 *
* Copyright (C) 1998-2018 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand All @@ -17,7 +17,7 @@
* <p>Used in NFA to represent a partial NFA by its start and end state.
*
* @author Gerwin Klein
* @version JFlex 1.8.0-SNAPSHOT
* @version JFlex 1.8.0
*/
@AutoValue
public abstract class IntPair {
Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/base/Pair.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.8.0-SNAPSHOT *
* JFlex 1.8.0 *
* Copyright (C) 1998-2018 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand All @@ -15,7 +15,7 @@
* Generic immutable pair.
*
* @author Gerwin Klein
* @version JFlex 1.8.0-SNAPSHOT
* @version JFlex 1.8.0
*/
public class Pair<A, B> {
public final A fst;
Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/chars/Interval.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.8.0-SNAPSHOT *
* JFlex 1.8.0 *
* Copyright (C) 1998-2018 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand All @@ -16,7 +16,7 @@
*
* @author Gerwin Klein
* @author Régis Décamps
* @version JFlex 1.8.0-SNAPSHOT
* @version JFlex 1.8.0
*/
public final class Interval implements Iterable<Integer> {

Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/core/Action.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.8.0-SNAPSHOT *
* JFlex 1.8.0 *
* Copyright (C) 1998-2018 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand All @@ -19,7 +19,7 @@
* <p>It stores the Java code as String together with a priority (line number in the specification).
*
* @author Gerwin Klein
* @version JFlex 1.8.0-SNAPSHOT
* @version JFlex 1.8.0
*/
public final class Action {

Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/core/EOFActions.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.8.0-SNAPSHOT *
* JFlex 1.8.0 *
* Copyright (C) 1998-2018 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand All @@ -17,7 +17,7 @@
* A simple table to store EOF actions for each lexical state.
*
* @author Gerwin Klein
* @version JFlex 1.8.0-SNAPSHOT
* @version JFlex 1.8.0
*/
public class EOFActions {

Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/core/Macros.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.8.0-SNAPSHOT *
* JFlex 1.8.0 *
* Copyright (C) 1998-2018 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand Down Expand Up @@ -27,7 +27,7 @@
* <p>Maps macros to their (expanded) definitions, detects cycles and unused macros.
*
* @author Gerwin Klein
* @version JFlex 1.8.0-SNAPSHOT
* @version JFlex 1.8.0
*/
public final class Macros {

Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/core/NFA.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.8.0-SNAPSHOT *
* JFlex 1.8.0 *
* Copyright (C) 1998-2018 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand Down Expand Up @@ -37,7 +37,7 @@
* <p>Contains algorithms RegExp → NFA.
*
* @author Gerwin Klein
* @version JFlex 1.8.0-SNAPSHOT
* @version JFlex 1.8.0
*/
public final class NFA {

Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/core/RegExp.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.8.0-SNAPSHOT *
* JFlex 1.8.0 *
* Copyright (C) 1998-2018 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand All @@ -20,7 +20,7 @@
* <p>This base class has no content other than its type.
*
* @author Gerwin Klein
* @version JFlex 1.8.0-SNAPSHOT
* @version JFlex 1.8.0
*/
public class RegExp {

Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/core/RegExp1.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.8.0-SNAPSHOT *
* JFlex 1.8.0 *
* Copyright (C) 1998-2018 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand All @@ -20,7 +20,7 @@
* <p>For instance: a* is new RegExp1(sym.STAR, 'a');
*
* @author Gerwin Klein
* @version JFlex 1.8.0-SNAPSHOT
* @version JFlex 1.8.0
*/
public class RegExp1 extends RegExp {

Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/core/RegExp2.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.8.0-SNAPSHOT *
* JFlex 1.8.0 *
* Copyright (C) 1998-2018 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand All @@ -15,7 +15,7 @@
* Regular expression with two children (e.g. a | b)
*
* @author Gerwin Klein
* @version JFlex 1.8.0-SNAPSHOT
* @version JFlex 1.8.0
*/
public class RegExp2 extends RegExp {

Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/core/RegExpException.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.8.0-SNAPSHOT *
* JFlex 1.8.0 *
* Copyright (C) 1998-2018 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand All @@ -16,7 +16,7 @@
* <p>If this is encountered, this means there is a bug.
*
* @author Gerwin Klein
* @version JFlex 1.8.0-SNAPSHOT
* @version JFlex 1.8.0
*/
// 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
Loading

0 comments on commit 91f5845

Please sign in to comment.