diff --git a/CHANGELOG.md b/CHANGELOG.md index 0782fff..d85af18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ 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). +## 0.3.0 - 2024-05-31 + +- rewrote paging with jetpack paging 3; +- db schema changes. + ## 0.2.2 - 2024-05-12 List UI tweak diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 26ad7b1..01b10a2 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -24,8 +24,8 @@ android { applicationId = "me.nanova.subspace" minSdk = 29 targetSdk = 34 - versionCode = 9 - versionName = "0.2.2" + versionCode = 10 + versionName = "0.3.0" archivesName = "subspace-v${versionName}-${versionCode}" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"