Skip to content

Commit

Permalink
To v0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pgleeson committed Sep 22, 2023
1 parent 92c7838 commit a6ec557
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: nelonoel/[email protected]

# https://stackoverflow.com/questions/58033366/how-to-get-current-branch-within-github-actions
Expand All @@ -20,7 +20,7 @@ jobs:
id: extract_branch

- name: Checkout lems
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: LEMS/LEMS
ref: ${{ steps.extract_branch.outputs.branch }}
Expand Down
2 changes: 1 addition & 1 deletion lems
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

export LEMS_VERSION=0.10.8
export LEMS_VERSION=0.11.0

export CLASSPATH=.:./target/jlems-$LEMS_VERSION.jar:$LEMS_HOME/target/jlems-$LEMS_VERSION.jar

Expand Down
2 changes: 1 addition & 1 deletion lems.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@echo off

set LEMS_VERSION=0.10.8
set LEMS_VERSION=0.11.0

set CLASSPATH=target\jlems-%LEMS_VERSION%.jar;%LEMS_HOME%\target\jlems-%LEMS_VERSION%.jar

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.lemsml</groupId>
<artifactId>jlems</artifactId>
<version>0.10.8</version>
<version>0.11.0</version>
<packaging>bundle</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/lemsml/jlems/io/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

public final class Main {

public static final String VERSION = "0.10.8";
public static final String VERSION = "0.11.0";

static String usage = "USAGE: java -jar target/jlems-"+VERSION+".jar [-cp folderpaths] model-file [-nogui]\n";

Expand Down

0 comments on commit a6ec557

Please sign in to comment.