Skip to content

Commit

Permalink
increment version to 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cliserkad committed Jan 17, 2024
1 parent e675267 commit 2d3d445
Show file tree
Hide file tree
Showing 10 changed files with 45 additions and 41 deletions.
2 changes: 1 addition & 1 deletion bootstrap/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>dev.fiz</groupId>
<artifactId>parent</artifactId>
<version>0.8.0</version>
<version>0.9.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion compiler/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>dev.fiz</groupId>
<artifactId>parent</artifactId>
<version>0.8.0</version>
<version>0.9.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
27 changes: 27 additions & 0 deletions compiler/src/kdl/compiler/CompilationDispatcher.fiz
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
package dev.fiz.compiler

import {
java.io.File
java.io.FileFilter
java.lang.System
}

type CompilationDispatcher {
const DEFAULT_INPUT = File(System.getProperty("user.dir")) // default to current directory
const DEFAULT_OUTPUT = File(System.getProperty("user.dir"), "/target/classes/") // default to current directory

File input = DEFAULT_INPUT // File input
File output = DEFAULT_OUTPUT // File output

main {
CompilationDispatcher dispatcher = CompilationDispatcher()
println(dispatcher)
println(DEFAULT_INPUT)
println(DEFAULT_OUTPUT)
}

string toString(this) {
return "CompilationDispatcher(input: $input, output: $output)"
}

}
25 changes: 0 additions & 25 deletions compiler/src/kdl/compiler/CompilationDispatcher.kdl

This file was deleted.

11 changes: 11 additions & 0 deletions compiler/src/kdl/compiler/CompilationUnit.fiz
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package dev.fiz.compiler

import {
java.io.File
}

type CompilationUnit {
File input


}
9 changes: 0 additions & 9 deletions compiler/src/kdl/compiler/CompilationUnit.kdl

This file was deleted.

File renamed without changes.
2 changes: 1 addition & 1 deletion fiz-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>dev.fiz</groupId>
<artifactId>parent</artifactId>
<version>0.8.0</version>
<version>0.9.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>fiz-maven-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>dev.fiz</groupId>
<artifactId>parent</artifactId>
<packaging>pom</packaging>
<version>0.8.0</version>
<version>0.9.0</version>
<scm>
<connection>scm:git:${project.scm.url}</connection>
<developerConnection>scm:git:${project.scm.url}</developerConnection>
Expand Down
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# fiz

A JVM language built for simplicity and usability.
[fiz.dev](https://fiz.dev)
[repo](https://github.com/cliserkad/fiz)
A JVM language built for simplicity and usability.
[fiz.dev](https://fiz.dev)
[repo](https://github.com/cliserkad/fiz)

# Installation

Expand Down

0 comments on commit 2d3d445

Please sign in to comment.