Skip to content

Commit

Permalink
DEV-1185: Bump version to 0.7.1 (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcoon97 authored Dec 2, 2022
1 parent 33fc8a3 commit e8d9533
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Add this to your project's POM:
<dependency>
<groupId>com.github.Dwolla</groupId>
<artifactId>dwolla-v2-kotlin</artifactId>
<version>0.7.0/version>
<version>0.7.1/version>
</dependency>
```

Expand All @@ -60,7 +60,7 @@ repositories {

```groovy
dependencies {
implementation("com.github.Dwolla:dwolla-v2-kotlin:0.7.0")
implementation("com.github.Dwolla:dwolla-v2-kotlin:0.7.1")
}
```

Expand Down Expand Up @@ -204,6 +204,8 @@ try {

## Changelog

- [**0.7.1**](https://github.com/Dwolla/dwolla-v2-kotlin/releases/tag/0.7.1)
- Fix bug where `ExchangePartnersApi` did not have proper `@Throws` annotations
- [**0.7.0**](https://github.com/Dwolla/dwolla-v2-kotlin/releases/tag/0.7.0)
- Add Exchanges and Exchange Partners high-level API methods
- [**0.6.1**](https://github.com/Dwolla/dwolla-v2-kotlin/releases/tag/0.6.1)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group = "com.dwolla"
version = "0.7.0"
version = "0.7.1"

plugins {
// Apply the Kotlin JVM plugin to add support for Kotlin on the JVM.
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/dwolla/DwollaClient.kt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ abstract class DwollaClient(@JvmField val environment: Environment) {

companion object {
val ACCEPT_HEADER = mapOf("accept" to "application/vnd.dwolla.v1.hal+json")
val USER_AGENT_HEADER = mapOf("user-agent" to "dwolla-v2-kotlin/0.7.0")
val USER_AGENT_HEADER = mapOf("user-agent" to "dwolla-v2-kotlin/0.7.1")
}

@Throws(DwollaApiException::class, DwollaAuthException::class)
Expand Down

0 comments on commit e8d9533

Please sign in to comment.