From e1cee9e6b330f7c8f55f2dff35365b10c2326284 Mon Sep 17 00:00:00 2001 From: Kevin Lee Date: Tue, 16 May 2023 20:50:59 +1000 Subject: [PATCH] whatsub v1.2.1 --- .scripts/install-graal-macos.sh | 2 +- .scripts/install-graal-ubuntu.sh | 2 +- .scripts/install-jvm.sh | 2 +- changelogs/1.2.1.md | 13 +++++++++++++ version.sbt | 2 +- 5 files changed, 17 insertions(+), 4 deletions(-) create mode 100644 changelogs/1.2.1.md diff --git a/.scripts/install-graal-macos.sh b/.scripts/install-graal-macos.sh index 4af01ed..d527eda 100755 --- a/.scripts/install-graal-macos.sh +++ b/.scripts/install-graal-macos.sh @@ -4,7 +4,7 @@ set -eu app_executable_name=whatsub app_name=whatsub-cli -app_version=${1:-1.2.0} +app_version=${1:-1.2.1} app_package_file="${app_name}-macos-latest" download_url="https://github.com/Kevin-Lee/whatsub/releases/download/v${app_version}/${app_package_file}" diff --git a/.scripts/install-graal-ubuntu.sh b/.scripts/install-graal-ubuntu.sh index ad87c21..4cc732e 100755 --- a/.scripts/install-graal-ubuntu.sh +++ b/.scripts/install-graal-ubuntu.sh @@ -4,7 +4,7 @@ set -eu app_executable_name=whatsub app_name=whatsub-cli -app_version=${1:-1.2.0} +app_version=${1:-1.2.1} app_package_file="${app_name}-ubuntu-latest" download_url="https://github.com/Kevin-Lee/whatsub/releases/download/v${app_version}/${app_package_file}" diff --git a/.scripts/install-jvm.sh b/.scripts/install-jvm.sh index 66943b7..95453e1 100755 --- a/.scripts/install-jvm.sh +++ b/.scripts/install-jvm.sh @@ -4,7 +4,7 @@ set -eu app_executable_name=whatsub app_name=whatsub-cli -app_version=${1:-1.2.0} +app_version=${1:-1.2.1} versioned_app_name="${app_name}-${app_version}" app_zip_file="${versioned_app_name}.zip" download_url="https://github.com/Kevin-Lee/whatsub/releases/download/v${app_version}/${app_zip_file}" diff --git a/changelogs/1.2.1.md b/changelogs/1.2.1.md new file mode 100644 index 0000000..b13b366 --- /dev/null +++ b/changelogs/1.2.1.md @@ -0,0 +1,13 @@ +## [1.2.1](https://github.com/Kevin-Lee/whatsub/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed+milestone%3Amilestone12) - 2023-05-16 + +## Bug Fix +* Parsing SAMI file fails when there's no `` tag (#252) + + +## Internal Housekeeping +* Upgrade Scala and libraries + * Scala to `3.2.2` + * cats-effect to `3.4.8` + * effectie to `2.0.0-beta9` + * extras to `0.38.0` +* sbt-wartremover to `3.1.0` diff --git a/version.sbt b/version.sbt index 7914ee9..4eb6c1e 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -ThisBuild / version := "1.2.0" +ThisBuild / version := "1.2.1"