Skip to content

Commit

Permalink
6.0.1 version
Browse files Browse the repository at this point in the history
  • Loading branch information
fcarrero authored Nov 26, 2024
1 parent bf4175b commit 12b8a06
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>io.conekta</groupId>
<artifactId>conektasdk</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>6.0.1</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -38,7 +38,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
compile "io.conekta:conektasdk:6.0.1-SNAPSHOT"
compile "io.conekta:conektasdk:6.0.1"
```

### Others
Expand All @@ -49,7 +49,7 @@ At first generate the JAR by executing:

Then manually install the following JARs:

- target/conektasdk-6.0.1-SNAPSHOT.jar
- target/conektasdk-6.0.1.jar
- target/lib/*.jar

## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ publishing {
mavenJava(MavenPublication) {
groupId = 'io.conekta'
artifactId = 'conektasdk'
version = '6.0.1-SNAPSHOT'
version = '6.0.1'

// Usa el archivo AAR generado
artifact("$buildDir/outputs/aar/conektasdk-release.aar")
Expand Down
4 changes: 2 additions & 2 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"developerOrganization": "Conekta, Inc.",
"developerOrganizationUrl": "https://www.conekta.io",
"artifactUrl": "https://developers.conekta.com/",
"artifactVersion": "6.0.1-SNAPSHOT",
"artifactVersion": "6.0.1",
"modelPackage": "io.conekta.model",
"licenseName": "MIT License",
"invokerPackage": "io.conekta",
Expand All @@ -25,7 +25,7 @@
"disallowAdditionalPropertiesIfNotPresent": true,
"useOneOfDiscriminatorLookup": true,
"serializationLibrary": "gson",
"httpUserAgent": "Conekta/v2 Android/6.0.1-SNAPSHOT",
"httpUserAgent": "Conekta/v2 Android/6.0.1",
"openApiNullable" : false,
"apiVersion" :"application/vnd.conekta-v2.1.0+json",
"templateDir": "local/templates",
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/conekta/ApiInvoker.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public class ApiInvoker {
DATE_FORMAT.setTimeZone(TimeZone.getTimeZone("UTC"));

// Set default User-Agent.
setUserAgent("Conekta/v2 Android/6.0.1-SNAPSHOT");
setUserAgent("Conekta/v2 Android/6.0.1");
}

public static void setUserAgent(String userAgent) {
Expand Down

0 comments on commit 12b8a06

Please sign in to comment.