Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Maven `pom.xml` and Gradle `build.gradle` are as follows:
<dependency>
<groupId>io.github.sttk</groupId>
<artifactId>stringcase</artifactId>
<version>0.1.0</version>
<version>0.2.0</version>
</dependency>
</dependencies>
```
Expand All @@ -51,7 +51,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'io.github.sttk:stringcase:0.1.0'
implementation 'io.github.sttk:stringcase:0.2.0'
}
```

Expand Down Expand Up @@ -101,8 +101,8 @@ See the file LICENSE in this distribution for more details.


[repo-url]: https://github.com/sttk/stringcase-java
[mvn-img]: https://img.shields.io/badge/maven_central-0.1.0-276bdd.svg
[mvn-url]: https://central.sonatype.com/artifact/io.github.sttk/stringcase/0.1.0
[mvn-img]: https://img.shields.io/badge/maven_central-0.2.0-276bdd.svg
[mvn-url]: https://central.sonatype.com/artifact/io.github.sttk/stringcase/0.2.0
[io-img]: https://img.shields.io/badge/github.io-Javadoc-4d7a97.svg
[io-url]: https://sttk.github.io/stringcase-java/
[ci-img]: https://github.com/sttk/stringcase-java/actions/workflows/java-ci.yml/badge.svg?branch=main
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.github.sttk</groupId>
<artifactId>stringcase</artifactId>
<version>0.1.0</version>
<version>0.2.0</version>
<packaging>jar</packaging>

<name>stringcase</name>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/github/sttk/stringcase/package-info.java
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/*
* package-info class.
* Copyright (C) 2024 Takayuki Sato. All Rights Reserved.
* Copyright (C) 2024-2025 Takayuki Sato. All Rights Reserved.
*/

/**
* This package contains modules related to converting string case.
*
* @version 0.1
* @version 0.2
*/
package com.github.sttk.stringcase;