Skip to content

Commit

Permalink
Fix versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ArkinSolomon committed Jan 25, 2023
1 parent 2cd8b6c commit 2b68219
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Sakura Interpreter -- Java

<img src="https://img.shields.io/badge/Interpreter%20Version-1.0.0.1--SNAPSHOT-red" /> <img src="https://img.shields.io/badge/Lang Version-0.1.0--beta.1-green" /> [![Tests](https://github.com/ArkinSolomon/sakura-interpreter-java/actions/workflows/test-all.yml/badge.svg)](https://github.com/ArkinSolomon/sakura-interpreter-java/actions/workflows/test-all.yml)
<img src="https://img.shields.io/badge/Interpreter%20Version-1.0.0-red" /> <img src="https://img.shields.io/badge/Lang Version-0.1.0--beta.1-green" /> [![Tests](https://github.com/ArkinSolomon/sakura-interpreter-java/actions/workflows/test-all.yml/badge.svg)](https://github.com/ArkinSolomon/sakura-interpreter-java/actions/workflows/test-all.yml)

Sakura Interpreter written in Java.

Expand Down
20 changes: 19 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,33 @@

<groupId>net.arkinsolomon</groupId>
<artifactId>sakurainterpreter</artifactId>
<version>1.0.0.1</version>
<version>1.0.0</version>
<packaging>jar</packaging>

<name>Sakura Interpreter</name>
<description>Sakura Interpreter for Java</description>
<url>https://github.com/ArkinSolomon/sakura-interpreter-java</url>

<developers>
<developer>
<id>ArkinSolomon</id>
<email>arkin@arkinsolomon.net</email>
<name>Arkin Solomon</name>
<organizationUrl>https://arkinsolomon.net</organizationUrl>
<roles>
<role>Main Developer/Project Owner</role>
</roles>
</developer>
<developer>
<id>others</id>
<name>Other Contributors</name>
</developer>
</developers>

<scm>
<url>https://github.com/ArkinSolomon/sakura-interpreter-java.git</url>
</scm>

<licenses>
<license>
<name>Apache License, Version 2.0</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
public class SakuraInterpreter {

public static final String LANG_VERSION = "0.1.0-beta-1";
public static final String INTERPRETER_VERSION = "1.0.0.1";
public static final String INTERPRETER_VERSION = "1.0.0";

private final InterpreterOptions options;

Expand Down

0 comments on commit 2b68219

Please sign in to comment.