Skip to content

Commit

Permalink
Update API VERSION in README
Browse files Browse the repository at this point in the history
  • Loading branch information
outscale-mdr committed Mar 10, 2023
1 parent 18be160 commit f2c2fdc
Show file tree
Hide file tree
Showing 3 changed files with 847 additions and 4 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ osc-generate: osc-api/outscale.yaml
mv .sdk/docs ./
@echo start update SDK version
sed "s%SDK_VERSION%$(SDK_VERSION)%" pom.xml.template > pom.xml
sed "s%SDK_VERSION%$(SDK_VERSION)%" README.md.template > README.md
sed -i "s%API_VERSION%$(API_VERSION)%" README.md
$(shell for i in ./examples/*; do sed "s%SDK_VERSION%$(SDK_VERSION)%" $$i/pom.xml.template > $$i/pom.xml; done)
git apply ./.osc-patches/before-format/*
mvn spotless:apply
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# osc-sdk-java

3DS OUTSCALE API
- API version: 1.24
- API version: 1.25.0

Welcome to the OUTSCALE API documentation.<br />
The OUTSCALE API enables you to manage your resources in the OUTSCALE Cloud. This documentation describes the different actions available along with code examples.<br /><br />
Expand Down Expand Up @@ -46,7 +46,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>io.github.outscale</groupId>
<artifactId>osc-sdk-java</artifactId>
<version>0.1.0</version>
<version>0.2.0</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -62,7 +62,7 @@ Add this dependency to your project's build file:
}
dependencies {
implementation "io.github.outscale:osc-sdk-java:0.1.0"
implementation "io.github.outscale:osc-sdk-java:0.2.0"
}
```

Expand All @@ -76,7 +76,7 @@ mvn clean package

Then manually install the following JARs:

* `target/osc-sdk-java-0.1.0.jar`
* `target/osc-sdk-java-0.2.0.jar`
* `target/lib/*.jar`

## Getting Started
Expand Down
Loading

0 comments on commit f2c2fdc

Please sign in to comment.