Upgraded version to 1.0.0
This commit is contained in:
parent
6e944c2608
commit
08da1debb7
3 changed files with 6 additions and 6 deletions
|
@ -56,7 +56,7 @@ This project provides a collection of useful template renderers.
|
|||
| [rife.render.Rot13](https://github.com/rife2/rife2-template-renderers/wiki/rife.render.Rot13) | Translates a template value to/from ROT13 |
|
||||
| [rife.render.SwapCase](https://github.com/rife2/rife2-template-renderers/wiki/rife.render.SwapCase) | Swap case of a template value |
|
||||
| [rife.render.Trim](https://github.com/rife2/rife2-template-renderers/wiki/rife.render.Trim) | Removes leading and trailing whitespace from a template value |
|
||||
| [rife.render.Uncapitalize](https://github.com/rife2/rife2-template-renderers/wiki/rife.render.Uncapitalize) | Un-capitalizes a template value |
|
||||
| [rife.render.Uncapitalize](https://github.com/rife2/rife2-template-renderers/wiki/rife.render.Uncapitalize) | Uncapitalizes a template value |
|
||||
| [rife.render.Uppercase](https://github.com/rife2/rife2-template-renderers/wiki/rife.render.Uppercase) | Converts a template value to uppercase |
|
||||
|
||||
## Documentation
|
||||
|
|
|
@ -13,10 +13,10 @@ plugins {
|
|||
id("com.github.ben-manes.versions") version "0.46.0"
|
||||
}
|
||||
|
||||
val rifeVersion by rootProject.extra { "1.5.3" }
|
||||
val rifeVersion by rootProject.extra { "1.5.4" }
|
||||
|
||||
group = "com.uwyn.rife2"
|
||||
version = "0.9.0-SNAPSHOT"
|
||||
version = "1.0.0"
|
||||
|
||||
repositories {
|
||||
mavenLocal()
|
||||
|
@ -188,4 +188,4 @@ signing {
|
|||
val signingPassword: String? by project // ORG_GRADLE_PROJECT_signingPassword
|
||||
useInMemoryPgpKeys(signingKey, signingPassword)
|
||||
sign(publishing.publications["mavenJava"])
|
||||
}
|
||||
}
|
||||
|
|
|
@ -439,10 +439,10 @@ public final class RenderUtils {
|
|||
}
|
||||
|
||||
/**
|
||||
* Un-capitalizes a String.
|
||||
* Uncapitalizes a String.
|
||||
*
|
||||
* @param src the source String
|
||||
* @return the capitalized String
|
||||
* @return the uncapitalized String
|
||||
*/
|
||||
public static String uncapitalize(String src) {
|
||||
if (src == null || src.isBlank()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue