Skip to content

Commit

Permalink
1.5.0 release (for release 5.3.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] authored and [email protected] committed Mar 31, 2023
1 parent 191cef3 commit 541d4d8
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 22 deletions.
6 changes: 3 additions & 3 deletions gui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>qdl</artifactId>
<groupId>edu.uiuc.ncsa.qdl</groupId>
<version>1.4-QDL-SNAPSHOT</version>
<version>1.5.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -22,13 +22,13 @@
<dependency>
<groupId>edu.uiuc.ncsa.security</groupId>
<artifactId>sas-server</artifactId>
<version>5.2-SNAPSHOT</version>
<version>5.3.0</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>edu.uiuc.ncsa.qdl</groupId>
<artifactId>language</artifactId>
<version>1.4-QDL-SNAPSHOT</version>
<version>1.5.0</version>
</dependency>

</dependencies>
Expand Down
10 changes: 5 additions & 5 deletions language/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
<parent>
<groupId>edu.uiuc.ncsa.qdl</groupId>
<artifactId>qdl</artifactId>
<version>1.4-QDL-SNAPSHOT</version>
<version>1.5.0</version>
</parent>

<artifactId>language</artifactId>
<name>QDL base language</name>
<packaging>jar</packaging>
<version>1.4-QDL-SNAPSHOT</version>
<version>1.5.0</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<additionalparam>-Xdoclint:none</additionalparam>
Expand Down Expand Up @@ -160,13 +160,13 @@
<dependency>
<groupId>edu.uiuc.ncsa.security</groupId>
<artifactId>storage</artifactId>
<version>5.2-SNAPSHOT</version>
<version>5.3.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>edu.uiuc.ncsa.security</groupId>
<artifactId>util</artifactId>
<version>5.2-SNAPSHOT</version>
<version>5.3.0</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -224,7 +224,7 @@
<dependency>
<groupId>edu.uiuc.ncsa.security</groupId>
<artifactId>sas-server</artifactId>
<version>5.2-SNAPSHOT</version>
<version>5.3.0</version>
<type>jar</type>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ public void setup(JFrame frame1, List<String> functions) {
*/
frame = frame1;
//System.setProperty("awt.useSystemAAFontSettings", "on");
frame.setTitle("QDL Workspace (version 1.4-QDL_SNAPSHOT)");
frame.setTitle("QDL Workspace (version 1.5.0)");
frame.setContentPane(getMainPanel());
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
AbstractTokenMakerFactory atmf = (AbstractTokenMakerFactory) TokenMakerFactory.getDefaultInstance();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* on 1/27/20 at 4:22 PM
*/
public interface QDLVersion {
static String VERSION = "1.4-QDL_SNAPSHOT";
static String VERSION = "1.5.0";
static String LANGUAGE_NAME = "qdl";
static String DEFAULT_FILE_EXTENSION = ".qdl"; // for scripts
static String DEFAULT_MODULE_FILE_EXTENSION = ".mdl"; // for modules
Expand Down
2 changes: 1 addition & 1 deletion language/src/main/resources/func_help.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2791,7 +2791,7 @@ including the endpoints.]]>

<entry id="version">
<body>
<![CDATA[The current version of QDL is 1.4-QDL-SNAPSHOT]]>
<![CDATA[The current version of QDL is 1.5.0]]>
</body>
</entry>
<entry id="if">
Expand Down
2 changes: 1 addition & 1 deletion language/src/main/scripts/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4-QDL-SNAPSHOT
1.5.0
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</parent>
<groupId>edu.uiuc.ncsa.qdl</groupId>
<artifactId>qdl</artifactId>
<version>1.4-QDL-SNAPSHOT</version>
<version>1.5.0</version>
<name>QDL root module</name>
<packaging>pom</packaging>
<description>The QDL programming Language.</description>
Expand Down
8 changes: 4 additions & 4 deletions qdl-sas/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>qdl</artifactId>
<groupId>edu.uiuc.ncsa.qdl</groupId>
<version>1.4-QDL-SNAPSHOT</version>
<version>1.5.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>qdl-sas</artifactId>
Expand All @@ -20,18 +20,18 @@
<dependency>
<groupId>edu.uiuc.ncsa.security</groupId>
<artifactId>sas-server</artifactId>
<version>5.2-SNAPSHOT</version>
<version>5.3.0</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>edu.uiuc.ncsa.qdl</groupId>
<artifactId>language</artifactId>
<version>1.4-QDL-SNAPSHOT</version>
<version>1.5.0</version>
</dependency>
<dependency>
<groupId>edu.uiuc.ncsa.qdl</groupId>
<artifactId>language</artifactId>
<version>1.4-QDL-SNAPSHOT</version>
<version>1.5.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>qdl</artifactId>
<groupId>edu.uiuc.ncsa.qdl</groupId>
<version>1.4-QDL-SNAPSHOT</version>
<version>1.5.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -19,12 +19,12 @@
<dependency>
<groupId>edu.uiuc.ncsa.qdl</groupId>
<artifactId>language</artifactId>
<version>1.4-QDL-SNAPSHOT</version>
<version>1.5.0</version>
</dependency>
<dependency>
<groupId>edu.uiuc.ncsa.qdl</groupId>
<artifactId>language</artifactId>
<version>1.4-QDL-SNAPSHOT</version>
<version>1.5.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions website/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<parent>
<groupId>edu.uiuc.ncsa.qdl</groupId>
<artifactId>qdl</artifactId>
<version>1.4-QDL-SNAPSHOT</version>
<version>1.5.0</version>
</parent>

<artifactId>website</artifactId>
<version>1.4-QDL-SNAPSHOT</version>
<version>1.5.0</version>

<name>NCSA QDL Website</name>
<url>http://qdl.github.io/</url>
Expand Down

0 comments on commit 541d4d8

Please sign in to comment.