Skip to content

Commit

Permalink
Increment to version 4.0.36
Browse files Browse the repository at this point in the history
  • Loading branch information
angelix committed Oct 24, 2024
1 parent 2511e4a commit 9f01ce5
Show file tree
Hide file tree
Showing 6 changed files with 170 additions and 19 deletions.
13 changes: 13 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ stages:
- deploy
- upload

variables:
GRADLE_USER_HOME: "${CI_PROJECT_DIR}/.gradle"

cache:
- key:
files:
- gradle/wrapper/gradle-wrapper.properties
paths:
- .gradle/wrapper
- .gradle/caches

#####################################
# Build XCFramework

Expand Down Expand Up @@ -211,6 +222,7 @@ sign_google_play:
tags:
- garelease
stage: deploy
cache: []
artifacts:
name: "$CI_PROJECT_NAME-$CI_JOB_NAME-$CI_COMMIT_SHORT_SHA"
expire_in: 30 days
Expand All @@ -228,6 +240,7 @@ sign_google_play:
.gcp_prep:
stage: upload
image: blockstream/gcloud-docker-tf:1.1.9
cache: []
tags:
- ga

Expand Down
15 changes: 11 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ 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/).

## [4.0.36] - 2024-10-24

### Changed
- Bump GDK to version 0.73.2
- Bump Breez to version 0.6.2
- Update dependencies

## [4.0.35] - 2024-09-26

### Added
Expand All @@ -16,12 +23,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Changed
- Update dependencies

- ### Fixed
### Fixed
- Various bug fixes

## [4.0.33] - 2024-08-15

- ### Fixed
### Fixed
- Fix GDK build for F-Droid

## [4.0.32] - 2024-08-12
Expand All @@ -35,7 +42,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Bump GDK to version 0.72.2
- Bump Breez to version 0.5.2

- ### Fixed
### Fixed
- Various bug fixes

## [4.0.31] - 2024-07-02
Expand All @@ -49,7 +56,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Updated project dependencies
- Bump Breez to version 0.5.1-rc4

- ### Fixed
### Fixed
- Fix F-Droid dependency issue

## [4.0.30] - 2024-06-10
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ fun Rotating(duration: Int = 1000, content: @Composable () -> Unit) {
val infiniteTransition = rememberInfiniteTransition()

val rotate by infiniteTransition.animateFloat(
initialValue = 1f,
targetValue = 359f,
initialValue = 359f,
targetValue = 1f,
animationSpec = infiniteRepeatable(
animation = tween(duration, easing = LinearEasing),
repeatMode = RepeatMode.Restart
Expand Down
22 changes: 11 additions & 11 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
jvm = "17"
accompanistPermissions = "0.34.0"
constraintlayoutComposeMultiplatform = "0.4.0"
kotlin = "2.0.20"
kotlin = "2.0.21"
kotlin-logging = "3.0.5"
kotlinx-coroutines = "1.9.0"
kotlinx-datetime = "0.6.1"
kotlinx-serialization = "1.7.2"
kotlin-ksp = "2.0.20-1.0.24"
android-gradle-plugin = "8.7.0"
kotlin-ksp = "2.0.21-1.0.26"
android-gradle-plugin = "8.7.1"
androidCompileSdk = "34"
androidTargetSdk = "34"
androidMinSdk = "24"
Expand All @@ -30,13 +30,13 @@ jackson = "2.9.6"
junit = "4.13.2"
kase64 = "1.0.6"
kermit = "2.0.4"
kmp-observableviewmodel = "1.0.0-BETA-6"
kmp-observableviewmodel = "1.0.0-BETA-7"
koin = "3.5.6"
koin-compose = "1.1.5"
koin-annotations = "1.3.1"
koin-ksp-compiler = "1.3.1"
ksoupEntites = "0.1.2"
lifecycle = "2.8.2"
lifecycle = "2.8.3"
middleEllipsisText3 = "1.2.0"
mpfilepicker = "3.1.0"
multiplatformSettings = "1.1.1"
Expand All @@ -54,8 +54,8 @@ guava = "31.1-android"
protobuf-java = "3.4.0"
recyclerview = "1.3.2"
replaying-share = "3.0.0"
review-ktx = "2.0.1"
rive-android = "9.6.5"
review-ktx = "2.0.2"
rive-android = "9.9.5"
rxandroid = "3.0.2"
rxandroidble = "1.18.1"
rxjava = "3.1.8"
Expand All @@ -75,14 +75,14 @@ uuid = "0.8.4"
desugar = "2.1.2"
viewpager2 = "1.1.0"
zxing-android-embedded = "4.3.0"
kmp-nativecoroutines = "1.0.0-ALPHA-36"
kmp-nativecoroutines = "1.0.0-ALPHA-37"
compose-material3 = "1.3.0"
compose-tooling-preview = "1.7.3"
compose-tooling-preview = "1.7.4"
compose-constraint = "1.0.1"
jetbrains-compose = "1.7.0-beta02"
jetbrains-compose = "1.7.0"
voyager = "1.1.0-beta02"
google-services = "4.4.2"
firebase-bom = "33.4.0"
firebase-bom = "33.5.1"
jna = "5.14.0"

[libraries]
Expand Down
Loading

0 comments on commit 9f01ce5

Please sign in to comment.