Skip to content

Commit

Permalink
Project: Change version from 2.0-SNAPSHOT to 2.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
smarkwal committed Jun 30, 2022
1 parent e351245 commit e4342b4
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions docs/example-report-asm-7.0-list.txt
Original file line number Diff line number Diff line change
Expand Up @@ -300,8 +300,8 @@ Java Runtime
------------
Information about JRE/JDK runtime.

Java home : /Library/Java/JavaVirtualMachines/jdk-11.0.6.jdk/Contents/Home
Java runtime : Java(TM) SE Runtime Environment
Java version : 11.0.6
Java vendor : Oracle Corporation
Java home : /Users/markwalder/Library/Java/JavaVirtualMachines/temurin-11.0.13/Contents/Home
Java runtime : OpenJDK Runtime Environment
Java version : 11.0.13
Java vendor : Eclipse Adoptium

6 changes: 3 additions & 3 deletions docs/example-report-asm-7.0.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>ASM 7.0</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="generator" content="JarHC 2.0-SNAPSHOT" />
<meta name="generator" content="JarHC 2.0.0" />
<style>
body {
font-family: Verdana, Arial, Helvetica, sans-serif;
Expand Down Expand Up @@ -156,9 +156,9 @@ <h2>Blacklist</h2>
<section id="JavaRuntime">
<h2>Java Runtime</h2>
<p>Information about JRE/JDK runtime.</p>
<p>Java home : /Library/Java/JavaVirtualMachines/jdk-11.0.6.jdk/Contents/Home<br>Java runtime : Java(TM) SE Runtime Environment<br>Java version : 11.0.6<br>Java vendor : Oracle Corporation</p>
<p>Java home : /Users/markwalder/Library/Java/JavaVirtualMachines/temurin-11.0.13/Contents/Home<br>Java runtime : OpenJDK Runtime Environment<br>Java version : 11.0.13<br>Java vendor : Eclipse Adoptium</p>
</section>

<div class="generator">Generated with <a href="http://jarhc.org" target="_blank">JarHC 2.0-SNAPSHOT</a></div>
<div class="generator">Generated with <a href="http://jarhc.org" target="_blank">JarHC 2.0.0</a></div>
</body>
</html>
8 changes: 4 additions & 4 deletions docs/example-report-asm-7.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ Java Runtime
------------
Information about JRE/JDK runtime.

Java home : /Library/Java/JavaVirtualMachines/jdk-11.0.6.jdk/Contents/Home
Java runtime : Java(TM) SE Runtime Environment
Java version : 11.0.6
Java vendor : Oracle Corporation
Java home : /Users/markwalder/Library/Java/JavaVirtualMachines/temurin-11.0.13/Contents/Home
Java runtime : OpenJDK Runtime Environment
Java version : 11.0.13
Java vendor : Eclipse Adoptium

2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.
#

version=2.0-SNAPSHOT
version=2.0.0

# signing information
signing.keyId=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ private void findProjectFiles() {
// read JarHC version from VERSION file (if it exists)
String versionFilePath = "build/resources/main/VERSION";
jarHcVersion = readProjectFile(versionFilePath);
Assertions.assertThat(jarHcVersion).as("JarHC version").matches("^[1-9]\\.[0-9]+(-SNAPSHOT)?$");
Assertions.assertThat(jarHcVersion).as("JarHC version").matches("^\\d+\\.\\d+\\.\\d+(-SNAPSHOT)?$");

}

Expand Down

0 comments on commit e4342b4

Please sign in to comment.