From b0864240094f65f86f18a731fd2930ea6dfb2888 Mon Sep 17 00:00:00 2001 From: Kurt Nelson Date: Wed, 10 Jun 2020 15:43:15 -0700 Subject: [PATCH] Cut 0.0.8 --- CHANGELOG.md | 5 +++++ README.md | 9 ++++----- gradle.properties | 4 ++-- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b05a4ab..40b32af 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Changelog ========= +Version 0.0.8 +---------------------------- +* Upgrade to latest protolite runtime. +* Build with and target Android 11. + Version 0.0.7 ---------------------------- * Upgrade to protolite's new runtime. diff --git a/README.md b/README.md index cc53704..9376bdc 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ # Simple Store - -[![Build Status](https://travis-ci.com/uber/simple-store.svg?token=vUDcZtk6T5yr64PuQJP1&branch=master)](https://travis-ci.com/uber/simple-store) +![CI](https://github.com/uber/simple-store/workflows/CI/badge.svg?branch=master) [![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/3000/badge)](https://bestpractices.coreinfrastructure.org/projects/3000) [![Maven Central](https://img.shields.io/maven-central/v/com.uber.simplestore/simplestore.svg)](https://search.maven.org/artifact/com.uber.simplestore/simplestore) [![Maven Central](https://img.shields.io/maven-central/v/com.uber.simplestore/simplestore-proto.svg)](https://search.maven.org/artifact/com.uber.simplestore/simplestore-proto) @@ -19,9 +18,9 @@ To include in a gradle project, add to your dependencies: ```groovy dependencies { - implementation 'com.uber.simplestore:simplestore:0.0.7' + implementation 'com.uber.simplestore:simplestore:0.0.8' // If using protocol buffers, also add: - implementation 'com.uber.simplestore:simplestore-proto:0.0.7' + implementation 'com.uber.simplestore:simplestore-proto:0.0.8' } ``` @@ -93,7 +92,7 @@ This model makes deadlock across namespaces impossible, as even a blockingGet ca ## License - Copyright (C) 2019 Uber Technologies + Copyright (C) 2020 Uber Technologies Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/gradle.properties b/gradle.properties index 7e41d77..e0bb0b5 100644 --- a/gradle.properties +++ b/gradle.properties @@ -15,8 +15,8 @@ org.gradle.jvmargs=-Xmx1536m kotlin.code.style=official android.useAndroidX=true -VERSION_NAME=0.0.7 -VERSION_CODE=4 +VERSION_NAME=0.0.8 +VERSION_CODE=5 GROUP=com.uber.simplestore POM_DESCRIPTION=A no-frills fast async storage library