Skip to content

Commit

Permalink
Version 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pml-lang committed Aug 19, 2022
1 parent 3242e5f commit 15b18a7
Show file tree
Hide file tree
Showing 16 changed files with 12 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Customized Git scripts
bin/Git/

# Gradle project-specific cache directory
**/.gradle

Expand Down
2 changes: 1 addition & 1 deletion bin/03_build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
cd ..
call gradlew build

rem pause
pause
Binary file modified dependencies/pdml-commands-0.15.0.jar
Binary file not shown.
Binary file modified dependencies/pdml-core-0.15.0.jar
Binary file not shown.
Binary file modified dependencies/pdml-ext-0.15.0.jar
Binary file not shown.
Binary file modified dependencies/pp-basics-0.11.0.jar
Binary file not shown.
Binary file modified dependencies/pp-commands-0.11.0.jar
Binary file not shown.
Binary file modified dependencies/pp-datatype-0.11.0.jar
Binary file not shown.
Binary file modified dependencies/pp-parameters-0.11.0.jar
Binary file not shown.
Binary file modified dependencies/pp-scripting-0.11.0.jar
Binary file not shown.
Binary file modified dependencies/pp-text-0.11.0.jar
Binary file not shown.
Binary file modified dependencies/pp-texttable-0.11.0.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion pmlc-commands/bin/04_create_dist.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
cd ..
call ..\gradlew installDist

rem pause
pause
5 changes: 5 additions & 0 deletions pmlc-commands/bin/test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

/mnt/c/WINDOWS/system32/wsl.exe

read -p "Press Enter to continue... "
2 changes: 1 addition & 1 deletion pmlc-commands/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies {
// https://github.com/remkop/picocli/tree/main/picocli-codegen
annotationProcessor 'info.picocli:picocli-codegen:4.6.3'

implementation group: 'org.graalvm.js', name: 'js', version: '22.1.0'
implementation group: 'org.graalvm.js', name: 'js', version: '22.2.0'
}

application {
Expand Down
2 changes: 1 addition & 1 deletion pmlc-ext/src/main/java/dev/pmlc/ext/PMLCVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class PMLCVersion {
public static @NotNull String APPLICATION_SHORT_NAME = "PMLC";

public static @NotNull String VERSION = "3.0.0";
public static @NotNull String DATE_PUBLISHED = "2022-08-07";
public static @NotNull String DATE_PUBLISHED = "2022-08-19";
public static @NotNull String VERSION_TEXT = APPLICATION_SHORT_NAME + " " + VERSION + " " + DATE_PUBLISHED;

public static @NotNull String getMajorVersion() {
Expand Down

0 comments on commit 15b18a7

Please sign in to comment.