Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
tonisives committed Nov 16, 2023
1 parent 16ed930 commit 1a40309
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
# Changelog

This is the changelog for v1 releases. See v0 changelog in the [v0 branch](https://github.com/highmobility/hmkit-fleet/tree/v0).
This is the changelog for v2 releases. See v0/v1 releases in appropriate branches.

## [1.0.0] - 2023-05-22
## [2.0.0] - 2023-16-11

### Added
- new `HMKitFleet` constructor with OAuth/OAuth private key credentials

- Initialize HMKitFleet with the `new` keyword. [PR](https://github.com/highmobility/hmkit-fleet/pull/19)
```java
HMKitFleet hmkit = new HMKitFleet(
apiConfiguration,
HMKitFleet.Environment.SANDBOX
HMKitCredentials credentials = new HMKitOAuthCredentials(
"client_id",
"client_secret"
);
```

### Removed
HMKitConfiguration configuration = new HMKitConfiguration.Builder()
.credentials(credentials)
.environment(HMKitFleet.Environment.SANDBOX)
.build();

HMKitFleet hmkit = new HMKitFleet(configuration);
```

- Remove the singleton variant of HMKitFleet
- Tesla brand

0 comments on commit 1a40309

Please sign in to comment.