Skip to content

Commit

Permalink
Merge pull request #203 from Kevin-Lee/prepare-to-release
Browse files Browse the repository at this point in the history
whatsub v1.1.0
  • Loading branch information
kevin-lee committed Jun 18, 2022
2 parents e3ab57b + c3a32d8 commit 2f548f8
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .scripts/install-graal-macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -eu

app_executable_name=whatsub
app_name=whatsub-cli
app_version=${1:-1.0.4}
app_version=${1:-1.1.0}
app_package_file="${app_name}-macos-latest"
download_url="https://github.com/Kevin-Lee/whatsub/releases/download/v${app_version}/${app_package_file}"

Expand Down
2 changes: 1 addition & 1 deletion .scripts/install-graal-ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -eu

app_executable_name=whatsub
app_name=whatsub-cli
app_version=${1:-1.0.4}
app_version=${1:-1.1.0}
app_package_file="${app_name}-ubuntu-latest"
download_url="https://github.com/Kevin-Lee/whatsub/releases/download/v${app_version}/${app_package_file}"

Expand Down
2 changes: 1 addition & 1 deletion .scripts/install-jvm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -eu

app_executable_name=whatsub
app_name=whatsub-cli
app_version=${1:-1.0.4}
app_version=${1:-1.1.0}
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}"
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ lazy val props =

final val ProjectName = RepoName

final val ProjectVersion = "1.0.4"
final val ProjectVersion = "1.1.0"

final val ExecutableScriptName = RepoName

Expand Down
19 changes: 19 additions & 0 deletions changelogs/1.1.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
## [1.1.0](https://github.com/Kevin-Lee/whatsub/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed+milestone%3Amilestone10) - 2022-06-18


## Done
* Add success message for charset conversion (#192)
* Highlight the result message and file path with color (#195)
* Make `FileF.writeFile` more reusable with a function using `Writer` (#197)
* Upgrade Java to `17` and GraalVM native image version `22.1.0` (#185)
* Set up `WartRemover` for Scala 3 (#180)
* Upgrade libraries (#187)
* `hedgehog` `0.8.0` => `0.9.0`
* `cats-effect` `3.3.6` => `3.3.12`
* `cats-parse` `0.3.4` => `0.3.7`
* `effectie-cats-effect3` `2.0.0-SNAPSHOT` => `2.0.0-beta1`
* `extras-cats` and `extras-scala-io` `0.4.0` => `0.15.0`
* `sbt-devoops` `2.20.0` => `2.21.0`
* Upgrade `pirate` (#189) - `deec3408b08a751de9b2df2d17fc1ab7b8daeaaf` => `18dfbbca014ba2312a640cf558ab6eca19c47eb8`
* Upgrade `cats` `2.7.0` => `2.8.0` (#201)
* Add Scalafix and Scalafmt (#199)

0 comments on commit 2f548f8

Please sign in to comment.