Skip to content

Commit

Permalink
Merge pull request #19 from sinch/new_release
Browse files Browse the repository at this point in the history
Update version as 1.0.7 is released
  • Loading branch information
thomasf147 authored Feb 9, 2022
2 parents f59079c + 09ead63 commit c033473
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ With Maven
<dependency>
<groupId>com.sinch</groupId>
<artifactId>sdk-sms</artifactId>
<version>1.0.6</version>
<version>1.0.7</version>
</dependency>
```

With Gradle

```xml
implementation 'com.sinch:sdk-sms:1.0.6'
implementation 'com.sinch:sdk-sms:1.0.7'
```

## Building and installing
Expand All @@ -43,7 +43,7 @@ Build .jar file

$ mvn package

It will give you `sdk-sms-1.0.6-jar-with-dependencies.jar`
It will give you `sdk-sms-1.0.7-jar-with-dependencies.jar`

To skip local test

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.sinch</groupId>
<artifactId>sdk-sms</artifactId>
<version>1.0.7-SNAPSHOT</version>
<version>1.0.8-SNAPSHOT</version>
<packaging>jar</packaging>
<name>SDK for Sinch SMS</name>
<description>Library providing a Java API for the Sinch HTTP REST Messaging API.</description>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/sinch/xms/api/JacksonUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ protected byte[] _deserialize(String value, DeserializationContext ctxt) throws
return (byte[]) ctxt.handleWeirdStringValue(handledType(), value, e.getMessage());
}
}
};
}

/** Jackson serializer for hex encoded byte arrays. */
static final class ByteArrayHexSerializer extends StdScalarSerializer<byte[]> {
Expand All @@ -70,7 +70,7 @@ public void serialize(byte[] value, JsonGenerator gen, SerializerProvider provid
throws IOException {
gen.writeString(Hex.encodeHexString(value));
}
};
}

/** JSON deserializer of parameter values. */
static final class ParameterValuesDeserializer extends StdNodeBasedDeserializer<ParameterValues> {
Expand Down

0 comments on commit c033473

Please sign in to comment.