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
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,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.8.0</version>
<version>0.9.0</version>
</dependency>
</dependencies>
```
Expand All @@ -68,7 +68,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'io.github.sttk:sabi:0.8.0'
implementation 'io.github.sttk:sabi:0.9.0'
}
```

Expand Down Expand Up @@ -254,9 +254,9 @@ This program is free software under MIT License.<br>
See the file LICENSE in this distribution for more details.


[mvn-img]: https://img.shields.io/badge/maven_central-0.8.0-276bdd.svg
[mvn-url]: https://central.sonatype.com/artifact/io.github.sttk/sabi/0.8.0
[mvnrepo-img]: https://img.shields.io/badge/mvn_repository-0.8.0-498df4.svg
[mvn-img]: https://img.shields.io/badge/maven_central-0.9.0-276bdd.svg
[mvn-url]: https://central.sonatype.com/artifact/io.github.sttk/sabi/0.9.0
[mvnrepo-img]: https://img.shields.io/badge/mvn_repository-0.9.0-498df4.svg
[mvnrepo-url]: https://mvnrepository.com/artifact/io.github.sttk/sabi
[io-img]: https://img.shields.io/badge/github.io-Javadoc-4d7a97.svg
[io-url]: https://sttk.github.io/sabi-java/
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>1.0.0</version>
<version>0.9.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 core interfaces and classes for the sabi framework.
*
* @version 0.8
* @version 0.9
*/
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 @@ -10,7 +10,7 @@
* manage data source and connection lifecycles, and execute logic functions in transactional or
* non-transactional scopes.
*
* @version 0.8
* @version 0.9
*/
module com.github.sttk.sabi {
exports com.github.sttk.sabi;
Expand Down