Skip to content

Commit

Permalink
Release 2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
amdelamar committed Nov 27, 2019
1 parent 2701746 commit 81e1441
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -23,7 +23,7 @@ Maven:
<dependency>
<groupId>com.amdelamar</groupId>
<artifactId>jhash</artifactId>
<version>2.1.0</version>
<version>2.1.2</version>
</dependency>
```

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

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

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

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group = 'com.amdelamar'
version = '2.1.0'
version = '2.1.2'
description = 'Password hashing utility in Java. It can hash passwords with PBKDF2 hmac SHA1/SHA256/SHA512, BCRYPT, or SCRYPT, and 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
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.0</code> - 30 Jun 2018 - <code>47KB</code>
<code>v2.1.2</code> - 27 Nov 2019 - <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.0&lt;/version&gt;
&lt;version&gt;2.1.2&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.0'
compile 'com.amdelamar:jhash:2.1.2'
}
</code></pre>

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

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

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

0 comments on commit 81e1441

Please sign in to comment.