Skip to content

Commit 177cf32

Browse files
committed
bump version to 0.9.8
1 parent 2bd4a32 commit 177cf32

File tree

8 files changed

+12
-7
lines changed

8 files changed

+12
-7
lines changed

janitor-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.eischet.janitor</groupId>
88
<artifactId>janitor-project</artifactId>
9-
<version>0.9.7</version>
9+
<version>0.9.8</version>
1010
</parent>
1111

1212
<artifactId>janitor-api</artifactId>

janitor-demo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.eischet.janitor</groupId>
88
<artifactId>janitor-project</artifactId>
9-
<version>0.9.7</version>
9+
<version>0.9.8</version>
1010
</parent>
1111

1212
<artifactId>janitor-demo</artifactId>

janitor-demo/src/main/java/com/eischet/janitor/demo/Demo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public DemoEnvironment() {
6464
// Better don't make them modifiable, because modifications will stick!
6565
setupBuiltinScope(globals -> {
6666
// put a "version" string into the global scope
67-
globals.bind("version", "0.9.7");
67+
globals.bind("version", "0.9.8");
6868
// place an "exit()" function in the global scope.
6969
// note that I wouldn't want to use System.exit() in a real world use case,
7070
// but for the demo I guess it's fine.

janitor-jsr223/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.eischet.janitor</groupId>
88
<artifactId>janitor-project</artifactId>
9-
<version>0.9.7</version>
9+
<version>0.9.8</version>
1010
</parent>
1111

1212
<artifactId>janitor-jsr223</artifactId>

janitor-lang/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.eischet.janitor</groupId>
88
<artifactId>janitor-project</artifactId>
9-
<version>0.9.7</version>
9+
<version>0.9.8</version>
1010
</parent>
1111

1212
<artifactId>janitor-lang</artifactId>

janitor-toolbox/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.eischet.janitor</groupId>
88
<artifactId>janitor-project</artifactId>
9-
<version>0.9.7</version>
9+
<version>0.9.8</version>
1010
</parent>
1111

1212
<artifactId>janitor-toolbox</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.eischet.janitor</groupId>
77
<artifactId>janitor-project</artifactId>
8-
<version>0.9.7</version>
8+
<version>0.9.8</version>
99

1010
<name>Janitor</name>
1111
<description>A simple scripting language for the JVM.</description>

release-notes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 0.9.8, 2024-09-05
2+
3+
0.9.7 broke filter scripts with implicit objects in an app; restoring old behaviour.
4+
5+
16
# 0.9.7, 2024-09-05
27

38
Added basic syntax highlighters for ACE, TextMate and VS Code. Added a logo.

0 commit comments

Comments
 (0)