Skip to content

Commit 966c2de

Browse files
committed
🎉 v1.0.3
1 parent e81d1e7 commit 966c2de

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/java-ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
- name: Build with Maven
1919
run: mvn -B package --file pom.xml
2020
- name: Zip file
21-
run: zip CLibrary.zip target/CLibrary-1.0.2-SNAPSHOT.jar target/original-CLibrary-1.0.2-SNAPSHOT.jar
21+
run: zip CLibrary.zip target/CLibrary-1.0.3-SNAPSHOT.jar target/original-CLibrary-1.0.3-SNAPSHOT.jar
2222
- uses: actions/upload-artifact@v1
2323
with:
24-
name: CLibrary-v1.0.2
24+
name: CLibrary-v1.0.3
2525
path: CLibrary.zip

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Or get it from my personal repository:
5656
<dependency>
5757
<groupId>fr.cleymax</groupId>
5858
<artifactId>CLibrary</artifactId>
59-
<version>1.0.2</version>
59+
<version>1.0.3</version>
6060
<scope>compile</scope>
6161
</dependency>
6262
```
@@ -70,7 +70,7 @@ maven {
7070
}
7171
7272
// Add to dependencies
73-
compile 'fr.cleymax:CLibrary:1.0.2'
73+
compile 'fr.cleymax:CLibrary:1.0.3'
7474
```
7575

7676
### Use

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
6565
<java.version>1.8</java.version>
6666
<revision>${build.version}-SNAPSHOT</revision>
67-
<build.version>1.0.2</build.version>
67+
<build.version>1.0.3</build.version>
6868
</properties>
6969

7070
<profiles>

src/test/java/fr/cleymax/clibrary/TestClibrary.java

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
* File <b>TestClibrary</b> located on fr.cleymax.clibrary is a part of CLibrary. Created the 12/04/2020
77
* <p>
88
* @author Clément P. (Cleymax)
9+
* @since 1.0.3
910
*/
1011

1112
public class TestClibrary {

0 commit comments

Comments
 (0)