Skip to content

Commit 83823ab

Browse files
1.5.3 checkin
1 parent 355df04 commit 83823ab

File tree

12 files changed

+25
-25
lines changed

12 files changed

+25
-25
lines changed

gui/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>qdl</artifactId>
77
<groupId>edu.uiuc.ncsa.qdl</groupId>
8-
<version>1.5-QDL-SNAPSHOT</version>
8+
<version>1.5.3</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -22,13 +22,13 @@
2222
<dependency>
2323
<groupId>edu.uiuc.ncsa.security</groupId>
2424
<artifactId>sas-server</artifactId>
25-
<version>5.3-SNAPSHOT</version>
25+
<version>5.3.3</version>
2626
<type>jar</type>
2727
</dependency>
2828
<dependency>
2929
<groupId>edu.uiuc.ncsa.qdl</groupId>
3030
<artifactId>language</artifactId>
31-
<version>1.5-QDL-SNAPSHOT</version>
31+
<version>1.5.3</version>
3232
</dependency>
3333
3434
</dependencies>-->

language/buildNumber.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#maven.buildNumber.plugin properties file
2-
#Thu Jul 13 06:18:43 CDT 2023
3-
buildNumber\\d*=12269
2+
#Mon Jul 17 16:03:54 CDT 2023
3+
buildNumber\\d*=12287

language/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
<parent>
77
<groupId>edu.uiuc.ncsa.qdl</groupId>
88
<artifactId>qdl</artifactId>
9-
<version>1.5-QDL-SNAPSHOT</version>
9+
<version>1.5.3</version>
1010
</parent>
1111

1212
<artifactId>language</artifactId>
1313
<name>QDL base language</name>
1414
<packaging>jar</packaging>
15-
<version>1.5-QDL-SNAPSHOT</version>
15+
<version>1.5.3</version>
1616
<properties>
1717
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1818
<additionalparam>-Xdoclint:none</additionalparam>
@@ -160,13 +160,13 @@
160160
<dependency>
161161
<groupId>edu.uiuc.ncsa.security</groupId>
162162
<artifactId>storage</artifactId>
163-
<version>5.3-SNAPSHOT</version>
163+
<version>5.3.3</version>
164164
<scope>compile</scope>
165165
</dependency>
166166
<dependency>
167167
<groupId>edu.uiuc.ncsa.security</groupId>
168168
<artifactId>util</artifactId>
169-
<version>5.3-SNAPSHOT</version>
169+
<version>5.3.3</version>
170170
<scope>compile</scope>
171171
</dependency>
172172
<dependency>
@@ -224,7 +224,7 @@
224224
<dependency>
225225
<groupId>edu.uiuc.ncsa.security</groupId>
226226
<artifactId>sas-server</artifactId>
227-
<version>5.3-SNAPSHOT</version>
227+
<version>5.3.3</version>
228228
<type>jar</type>
229229
</dependency>
230230
</dependencies>

language/src/main/java/edu/uiuc/ncsa/qdl/gui/SwingTerminal.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ public void setup(JFrame frame1, List<String> functions) {
381381
*/
382382
frame = frame1;
383383
//System.setProperty("awt.useSystemAAFontSettings", "on");
384-
frame.setTitle("QDL Workspace (version 1.5-QDL-SNAPSHOT)");
384+
frame.setTitle("QDL Workspace (version 1.5.3)");
385385
frame.setContentPane(getMainPanel());
386386
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
387387
AbstractTokenMakerFactory atmf = (AbstractTokenMakerFactory) TokenMakerFactory.getDefaultInstance();

language/src/main/java/edu/uiuc/ncsa/qdl/util/QDLVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* on 1/27/20 at 4:22 PM
77
*/
88
public interface QDLVersion {
9-
static String VERSION = "1.5-QDL-SNAPSHOT";
9+
static String VERSION = "1.5.3";
1010
static String LANGUAGE_NAME = "qdl";
1111
static String DEFAULT_FILE_EXTENSION = ".qdl"; // for scripts
1212
static String DEFAULT_MODULE_FILE_EXTENSION = ".mdl"; // for modules

language/src/main/resources/func_help.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3058,7 +3058,7 @@ including the endpoints.]]>
30583058

30593059
<entry id="version">
30603060
<body>
3061-
<![CDATA[The current version of QDL is 1.5-QDL-SNAPSHOT]]>
3061+
<![CDATA[The current version of QDL is 1.5.3]]>
30623062
</body>
30633063
</entry>
30643064
<entry id="if">

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</parent>
1010
<groupId>edu.uiuc.ncsa.qdl</groupId>
1111
<artifactId>qdl</artifactId>
12-
<version>1.5-QDL-SNAPSHOT</version>
12+
<version>1.5.3</version>
1313
<name>QDL root module</name>
1414
<packaging>pom</packaging>
1515
<description>The QDL programming Language.</description>

sas/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>qdl</artifactId>
55
<groupId>edu.uiuc.ncsa.qdl</groupId>
6-
<version>1.5-QDL-SNAPSHOT</version>
6+
<version>1.5.3</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>sas</artifactId>
@@ -23,18 +23,18 @@
2323
<dependency>
2424
<groupId>edu.uiuc.ncsa.security</groupId>
2525
<artifactId>sas-server</artifactId>
26-
<version>5.3-SNAPSHOT</version>
26+
<version>5.3.3</version>
2727
<type>jar</type>
2828
</dependency>
2929
<dependency>
3030
<groupId>edu.uiuc.ncsa.qdl</groupId>
3131
<artifactId>language</artifactId>
32-
<version>1.5-QDL-SNAPSHOT</version>
32+
<version>1.5.3</version>
3333
</dependency>
3434
<dependency>
3535
<groupId>edu.uiuc.ncsa.qdl</groupId>
3636
<artifactId>language</artifactId>
37-
<version>1.5-QDL-SNAPSHOT</version>
37+
<version>1.5.3</version>
3838
<scope>compile</scope>
3939
</dependency>
4040
<dependency>

skin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>qdl</artifactId>
77
<groupId>edu.uiuc.ncsa.qdl</groupId>
8-
<version>1.5-QDL-SNAPSHOT</version>
8+
<version>1.5.3</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<groupId>edu.uiuc.ncsa.qdl.skin</groupId>

tests/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>qdl</artifactId>
77
<groupId>edu.uiuc.ncsa.qdl</groupId>
8-
<version>1.5-QDL-SNAPSHOT</version>
8+
<version>1.5.3</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -19,12 +19,12 @@
1919
<dependency>
2020
<groupId>edu.uiuc.ncsa.qdl</groupId>
2121
<artifactId>language</artifactId>
22-
<version>1.5-QDL-SNAPSHOT</version>
22+
<version>1.5.3</version>
2323
</dependency>
2424
<dependency>
2525
<groupId>edu.uiuc.ncsa.qdl</groupId>
2626
<artifactId>language</artifactId>
27-
<version>1.5-QDL-SNAPSHOT</version>
27+
<version>1.5.3</version>
2828
<scope>test</scope>
2929
</dependency>
3030
<dependency>

0 commit comments

Comments
 (0)