Skip to content

Commit

Permalink
Merge pull request #241 from Kevin-Lee/prepare-to-release
Browse files Browse the repository at this point in the history
whatsub v1.2.0
  • Loading branch information
kevin-lee committed Feb 12, 2023
2 parents af4a639 + 6ded291 commit f883e16
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
ThisBuild / scalaVersion := props.ScalaVersion
ThisBuild / version := props.ProjectVersion
ThisBuild / organization := props.Org
ThisBuild / developers := List(
Developer(
Expand Down Expand Up @@ -93,8 +92,6 @@ lazy val props =

final val ProjectName = RepoName

final val ProjectVersion = "1.1.0"

final val ExecutableScriptName = RepoName

final val SonatypeCredentialHost = "s01.oss.sonatype.org"
Expand Down Expand Up @@ -154,7 +151,10 @@ def module(projectName: String): Project = {
// scalacOptions ++= List("-source:3.1", "-Yexplicit-nulls"),
scalacOptions ++= List("-source:3.2"),
scalacOptions ~= (existing =>
existing.filter(_ != "-language:dynamics,existentials,higherKinds,reflectiveCalls,experimental.macros,implicitConversions,strictEquality")),
existing.filter(
_ != "-language:dynamics,existentials,higherKinds,reflectiveCalls,experimental.macros,implicitConversions,strictEquality"
)
),
libraryDependencies ++= libs.hedgehogLibs,
wartremoverErrors ++= ProjectInfo.commonWarts((update / scalaBinaryVersion).value),
wartremoverExcluded ++= List(sourceManaged.value),
Expand Down
18 changes: 18 additions & 0 deletions changelogs/1.2.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
## [1.2.0](https://github.com/Kevin-Lee/whatsub/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed+milestone%3Amilestone11) - 2023-02-12

## Bug Fix
* SRT: double lines are not parsed properly (#237)


## Internal Housekeeping
* Move sub-projects to modules (#210)
* Upgrade GraalVM to `22.2.0` (#213)
* Upgrade Scala and libraries (#218) (#226) (#235)
* Scala to `3.2.1`
* cats to `2.9.0`
* cats-effect to `3.4.6`
* cats-parse to `0.3.9`
* effectie to `2.0.0-beta6`
* extras to `0.30.0`
* pirate to `7797fb3884bdfdda7751d8f75accf622b30a53ed`
* hedgehog to `0.10.1`
1 change: 1 addition & 0 deletions version.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ThisBuild / version := "1.2.0"

0 comments on commit f883e16

Please sign in to comment.