From b015410752bf6c3bf3a0e75bdef3820bb41fc8c2 Mon Sep 17 00:00:00 2001 From: Kevin Lee Date: Sun, 10 Oct 2021 11:02:56 +1100 Subject: [PATCH] Prepare to release v1.0.0 --- .scripts/install-graal-macos.sh | 2 +- .scripts/install-graal-ubuntu.sh | 2 +- build.sbt | 2 +- changelogs/1.0.0.md | 8 ++++++++ 4 files changed, 11 insertions(+), 3 deletions(-) create mode 100644 changelogs/1.0.0.md diff --git a/.scripts/install-graal-macos.sh b/.scripts/install-graal-macos.sh index 93536d9..073796f 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:-0.1.3} +app_version=${1:-1.0.0} 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 0e3c813..6fc7307 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:-0.1.3} +app_version=${1:-1.0.0} 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/build.sbt b/build.sbt index 81360ec..041e353 100644 --- a/build.sbt +++ b/build.sbt @@ -82,7 +82,7 @@ lazy val props = final val ProjectName = RepoName - final val ProjectVersion = "0.1.3" + final val ProjectVersion = "1.0.0" final val ExecutableScriptName = RepoName diff --git a/changelogs/1.0.0.md b/changelogs/1.0.0.md new file mode 100644 index 0000000..f7915ab --- /dev/null +++ b/changelogs/1.0.0.md @@ -0,0 +1,8 @@ +## [1.0.0](https://github.com/Kevin-Lee/whatsub/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed+milestone%3Amilestone5) - 2021-10-10 + + +## Done +* Simplify options (#104) + * Get rid of `--src` and `--out` (#106) + * Make subtitle type optional - Use extension (#107) + * Make subtitle type optional - Read the first line to determine as fallback (#108)