Skip to content

Commit

Permalink
Release v4.0.0.1 (mobilecoinofficial#128)
Browse files Browse the repository at this point in the history
Updated CHANGELOG.md
Optimized imports
Reverted circleci timeout
Version bump
  • Loading branch information
dolanbernard authored Feb 11, 2023
1 parent fba33f1 commit cef03f6
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- run:
name: make tests
command: make tests
no_output_timeout: 45m
no_output_timeout: 30m

- store_artifacts:
path: android-sdk/build/reports
Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [4.0.0.1] - 2023-02-10

### Added
- `VersionedCryptoBox.versionedCryptoBoxEncrypt(RistrettoPublic, byte[])`
- Can be used to encrypt data for a recipient using the recipient's public key
- The recipient can decrypt the data using their private key

### Changed
- Exposed accessors for `AccountKey` keys to public API
- Updated dependency versions
- Changed license to Apache Version 2.0

### Upgrading
- AccountKey.createNew has been deprecated. Please remove references to it and use one of the other AccountKey creation methods

## [4.0.0] - 2023-01-06

### Added
Expand Down
2 changes: 1 addition & 1 deletion android-sdk/publish.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apply plugin: 'maven-publish'

version '4.0.0.1-pre4'
version '4.0.0.1'
group 'com.mobilecoin'

Properties properties = new Properties()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
package com.mobilecoin.lib;

import static com.mobilecoin.lib.UtilTest.waitForTransactionStatus;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotSame;
import static org.junit.Assert.assertNull;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import static com.mobilecoin.lib.Environment.getTestFogConfig;
import static com.mobilecoin.lib.UtilTest.waitForReceiptStatus;
import static com.mobilecoin.lib.UtilTest.waitForTransactionStatus;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotSame;
import static org.junit.Assert.assertTrue;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.mobilecoin.lib;

import static com.mobilecoin.lib.UtilTest.waitForTransactionStatus;

import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.mobilecoin.lib;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotSame;
import static org.junit.Assert.fail;
import static org.mockito.ArgumentMatchers.any;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotEquals;
import static org.junit.Assert.assertNotSame;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;

import androidx.annotation.NonNull;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@

import androidx.test.ext.junit.runners.AndroidJUnit4;

import com.mobilecoin.lib.log.Logger;

import org.junit.Test;
import org.junit.runner.RunWith;

Expand Down
2 changes: 0 additions & 2 deletions android-sdk/src/main/java/com/mobilecoin/lib/Mnemonics.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

import android.net.Uri;

import androidx.annotation.VisibleForTesting;

import com.mobilecoin.lib.exceptions.BadEntropyException;
import com.mobilecoin.lib.exceptions.BadMnemonicException;
import com.mobilecoin.lib.log.Logger;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import static org.mockito.Mockito.when;

import android.net.Uri;

import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
Expand Down

0 comments on commit cef03f6

Please sign in to comment.