Skip to content

Commit

Permalink
Release 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amdelamar committed Sep 22, 2020
1 parent c590b9c commit b4a637e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Maven:
<dependency>
<groupId>com.amdelamar</groupId>
<artifactId>jhash</artifactId>
<version>2.1.2</version>
<version>2.2.0</version>
</dependency>
```

Expand All @@ -33,7 +33,7 @@ repositories {
}
dependencies {
compile 'com.amdelamar:jhash:2.1.2'
compile 'com.amdelamar:jhash:2.2.0'
}
```

Expand All @@ -45,7 +45,7 @@ resolvers += {
}

libraryDependencies ++= Seq(
"com.amdelamar" % "jhash" % "2.1.2"
"com.amdelamar" % "jhash" % "2.2.0"
)
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group = 'com.amdelamar'
version = '2.1.2'
version = '2.2.0'
description = 'Password hashing utility in Java. Supports PBKDF2 hmac SHA1/SHA256/SHA512, BCRYPT, and SCRYPT. It salts automatically and has a pepper option.'
sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand Down
8 changes: 4 additions & 4 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ <h1 class="text-uppercase text-thinner text-wide">Jhash</h1>
<a class="button button-secondary" href="https://github.com/amdelamar/jhash/"><span class="icon-github text-medium margin-right"></span>View on GitHub</a>
<a class="button" href="https://github.com/amdelamar/jhash/issues"><span class="icon-bug text-medium margin-right"></span>Report Issue</a>
</p>
<code>v2.1.2</code> - 27 Nov 2019 - <code>47KB</code>
<code>v2.2.0</code> - 21 Sep 2020 - <code>47KB</code>
</div>
</div>
</header>
Expand All @@ -80,7 +80,7 @@ <h3>Download</h3>
&lt;dependency&gt;
&lt;groupId&gt;com.amdelamar&lt;/groupId&gt;
&lt;artifactId&gt;jhash&lt;/artifactId&gt;
&lt;version&gt;2.1.2&lt;/version&gt;
&lt;version&gt;2.2.0&lt;/version&gt;
&lt;/dependency&gt;</code></pre>

<p>Gradle:</p>
Expand All @@ -89,7 +89,7 @@ <h3>Download</h3>
}

dependencies {
compile 'com.amdelamar:jhash:2.1.2'
compile 'com.amdelamar:jhash:2.2.0'
}
</code></pre>

Expand All @@ -99,7 +99,7 @@ <h3>Download</h3>
}

libraryDependencies ++= Seq(
"com.amdelamar" % "jhash" % "2.1.2"
"com.amdelamar" % "jhash" % "2.2.0"
)
</code></pre>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.amdelamar</groupId>
<artifactId>jhash</artifactId>
<version>2.1.2</version>
<version>2.2.0</version>
</project>

0 comments on commit b4a637e

Please sign in to comment.