Skip to content

Commit

Permalink
Release 0.3.0-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
dzikoysk committed Jan 24, 2021
1 parent 2e75eb6 commit 4214774
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ The latest indev build
<dependency>
<groupId>org.panda-lang</groupId>
<artifactId>panda</artifactId>
<version>0.2.1-alpha</version>
<version>0.3.0-alpha</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion panda-framework/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>panda-parent</artifactId>
<groupId>org.panda-lang</groupId>
<version>0.2.1-alpha</version>
<version>0.3.0-alpha</version>
</parent>

<artifactId>panda-framework</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public final class PandaFrameworkConstants {
/**
* Current version of the Panda Framework
*/
public static final String VERSION = "0.2.1-alpha";
public static final String VERSION = "0.3.0-alpha";

private PandaFrameworkConstants() { }

Expand Down
2 changes: 1 addition & 1 deletion panda-utilities/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>panda-parent</artifactId>
<groupId>org.panda-lang</groupId>
<version>0.2.1-alpha</version>
<version>0.3.0-alpha</version>
</parent>

<artifactId>panda-utilities</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion panda/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>panda-parent</artifactId>
<groupId>org.panda-lang</groupId>
<version>0.2.1-alpha</version>
<version>0.3.0-alpha</version>
</parent>

<artifactId>panda</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ final class IsExpression implements DynamicExpression {
@Override
@SuppressWarnings("unchecked")
public Object evaluate(ProcessStack stack, Object instance) throws Exception {
return requestedSignature.toTyped().fetchType().getAssociated().get().isAssignableFrom(value.evaluate(stack, instance).getClass());
return requestedSignature.toType().getAssociated().get().isAssignableFrom(value.evaluate(stack, instance).getClass());
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<name>Panda</name>
<groupId>org.panda-lang</groupId>
<artifactId>panda-parent</artifactId>
<version>0.2.1-alpha</version>
<version>0.3.0-alpha</version>
<packaging>pom</packaging>

<modules>
Expand Down

0 comments on commit 4214774

Please sign in to comment.