mirror of
https://github.com/jlengrand/compose-multiplatform.git
synced 2026-03-10 08:11:20 +00:00
The build `0.4.0-build182` upgrades `kotlinx-collections-immutable` library (which is used by the compose runtime) to 0.3.4, which was published to maven central, so most usages of sunsetting jcenter repo can be removed now. Resolves #557
12 lines
569 B
Bash
Executable File
12 lines
569 B
Bash
Executable File
#!/bin/bash
|
|
ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"/..
|
|
COMPOSE_OLDVER=0.3.2
|
|
COMPOSE_NEWVER=0.4.0-build182
|
|
find -E $ROOT -regex '.*\.(kts|properties|kt)' -exec sed -i '' -e "s/$COMPOSE_OLDVER/$COMPOSE_NEWVER/g" {} \;
|
|
APPCOMPAT_OLDVER=1.1.0
|
|
APPCOMPAT_NEWVER=1.3.0-beta01
|
|
find -E $ROOT -regex '.*\.(kts|properties|kt)' -exec sed -i '' -e "s/$APPCOMPAT_OLDVER/$APPCOMPAT_NEWVER/g" {} \;
|
|
KOTLIN_OLDVER=1.4.31
|
|
KOTLIN_NEWVER=1.4.32
|
|
find -E $ROOT -regex '.*\.(kts|properties|kt)' -exec sed -i '' -e "s/$KOTLIN_OLDVER/$KOTLIN_NEWVER/g" {} \;
|