Move to Kotlin 1.4.32 and 0.4.0-build180

This commit is contained in:
Nikolay Igotti
2021-04-12 12:26:03 +03:00
parent 1f15bbb373
commit 76e3f45f8b
16 changed files with 28 additions and 28 deletions

View File

@@ -1,11 +1,11 @@
#!/bin/bash
ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"/..
COMPOSE_OLDVER=0.3.1
COMPOSE_NEWVER=0.3.2
COMPOSE_OLDVER=0.3.2
COMPOSE_NEWVER=0.4.0-build180
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.30
KOTLIN_NEWVER=1.4.31
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" {} \;