Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog
All notable changes to this project will be documented in this file.

## [3.1.6]
- Update values for `SessionStatus`

## [3.1.5]
- Restore backward compatibility to the gateway version for cardWallet/session and cardWallet/authorize API methods

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group = 'com.altapay'
version = '3.1.5'
version = '3.1.6'

repositories {
mavenCentral()
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ For integrating Java projects with the AltaPay gateway.
<dependency>
<groupId>com.altapay</groupId>
<artifactId>sdk-java</artifactId>
<version>3.1.5</version>
<version>3.1.6</version>
</dependency>

### Gradle

implementation 'com.altapay:sdk-java:3.1.5'
implementation 'com.altapay:sdk-java:3.1.6'

## Changelog

Expand Down
6 changes: 3 additions & 3 deletions src/main/java/com/pensio/api/SessionStatus.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.pensio.api;

public enum SessionStatus {
Created,
Completed,
Expired
CREATED,
COMPLETED,
EXPIRED
}