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 @@ -31,7 +31,7 @@ The examples of declaring that repository and the dependency on this package in
<dependency>
<groupId>io.github.sttk</groupId>
<artifactId>sabi</artifactId>
<version>0.5.0</version>
<version>0.6.0</version>
</dependency>
</dependencies>
```
Expand All @@ -43,7 +43,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'io.github.sttk:sabi:0.5.0'
implementation 'io.github.sttk:sabi:0.6.0'
}
```

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


[repo-url]: https://github.com/sttk/sabi-java
[mvn-img]: https://img.shields.io/badge/maven_central-0.5.0-276bdd.svg
[mvn-url]: https://central.sonatype.com/artifact/io.github.sttk/sabi/0.5.0
[mvn-img]: https://img.shields.io/badge/maven_central-0.6.0-276bdd.svg
[mvn-url]: https://central.sonatype.com/artifact/io.github.sttk/sabi/0.6.0
[io-img]: https://img.shields.io/badge/github.io-Javadoc-4d7a97.svg
[io-url]: https://sttk.github.io/sabi-java/
[ci-img]: https://github.com/sttk/sabi-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>sabi</artifactId>
<version>0.5.0</version>
<version>0.6.0</version>
<packaging>jar</packaging>

<name>sabi</name>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/github/sttk/sabi/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
/**
* Provides classes and interfaces of sabi framework.
*
* @version 0.5
* @version 0.6
*/
package com.github.sttk.sabi;
2 changes: 1 addition & 1 deletion src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* <p>This module includes the interfaces that abstracts data accesses to the external data stores
* and the classes to execute a logic function with or without transaction operations.
*
* @version 0.5
* @version 0.6
*/
module com.github.sttk.sabi {
exports com.github.sttk.sabi;
Expand Down
Loading