Skip to content

Commit

Permalink
Updates version to 1.0.0
Browse files Browse the repository at this point in the history
This prepares the official release and is needed to distinct between the previous 0.12 release and the current master (which will become 1.0.0 later).
  • Loading branch information
botic committed Oct 11, 2016
1 parent 17924b3 commit 7c84ac3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<!-- =================================================================== -->
<target name="init">
<property name="project" value="ringojs"/>
<property name="version" value="0.12"/>
<property name="version" value="1.0.0"/>

<!-- javac default targets for cross compilation on newer JDKs -->
<property name="ant.build.javac.source" value="1.8"/>
Expand Down
2 changes: 1 addition & 1 deletion src/org/ringojs/engine/RhinoEngine.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class RhinoEngine implements ScopeProvider {
private static Logger log = Logger.getLogger(RhinoEngine.class.getName());

public static final List<Integer> VERSION =
Collections.unmodifiableList(Arrays.asList(0, 12, 0));
Collections.unmodifiableList(Arrays.asList(1, 0, 0));

/**
* Create a RhinoEngine with the given configuration. If <code>globals</code>
Expand Down

0 comments on commit 7c84ac3

Please sign in to comment.