From 039b1da9e33e77ff2f69fc5cda6f4eebbafe0b95 Mon Sep 17 00:00:00 2001 From: Bernie Dolan Date: Mon, 2 Oct 2023 10:58:36 -0700 Subject: [PATCH] Update version and changelog for 5.0.1 (#137) --- CHANGELOG.md | 8 ++++++++ android-sdk/publish.gradle | 2 +- gradle.properties | 21 ++++++++------------- 3 files changed, 17 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index edacdca7..a74b14ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ 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). +## [5.0.1] - 2023-10-02 + +### Changed +- Order `FogSeed`s by `ingestInvocationId` + +### Upgrading +No code changes are *required* to upgrade from 5.0.0 to 5.0.1 + ## [5.0.0] - 2023-05-25 ### Changed diff --git a/android-sdk/publish.gradle b/android-sdk/publish.gradle index d56961d5..fb28982f 100644 --- a/android-sdk/publish.gradle +++ b/android-sdk/publish.gradle @@ -1,6 +1,6 @@ apply plugin: 'maven-publish' -version '5.0.1-pre0' +version '5.0.1' group 'com.mobilecoin' Properties properties = new Properties() diff --git a/gradle.properties b/gradle.properties index 26ea5af2..e476c3a6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,23 +1,18 @@ -# Project-wide Gradle settings. -# IDE (e.g. Android Studio) users: -# Gradle settings configured through the IDE *will override* -# any settings specified in this file. -# For more details on how to configure your build environment visit +## For more details on how to configure your build environment visit # http://www.gradle.org/docs/current/userguide/build_environment.html +# # Specifies the JVM arguments used for the daemon process. # The setting is particularly useful for tweaking memory settings. -org.gradle.jvmargs=-Xmx1536m +# Default value: -Xmx1024m -XX:MaxPermSize=256m +# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 +# # When configured, Gradle will run in incubating parallel mode. # This option should only be used with decoupled projects. More details, visit # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects # org.gradle.parallel=true -# AndroidX package structure to make it clearer which packages are bundled with the -# Android operating system, and which are packaged with your app's APK -# https://developer.android.com/topic/libraries/support-library/androidx-rn -android.useAndroidX=true -# Automatically convert third-party libraries to use AndroidX +#Mon Oct 02 10:21:45 PDT 2023 android.enableJetifier=true - +android.useAndroidX=true org.gradle.daemon=true +org.gradle.jvmargs=-Xmx2048M -Dkotlin.daemon.jvm.options\="-Xmx2048M" org.gradle.parallel=true -