Skip to content

Commit 3808560

Browse files
committed
Init 0.5.0
1 parent ad6a8cf commit 3808560

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

changelog/Changelog.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ def main(args: String*) =
1414
else Seq.empty
1515
val changelogChecker = ChangelogChecker(Config.loadFromEnv, exceptions, overwrite, yes)
1616
changelogChecker.check(os.pwd / "Toolkit.scala", "toolkit", Platform.Jvm)
17-
changelogChecker.check(os.pwd / "Toolkit.scala", "toolkit", Platform.Native, firstRelease = true)
17+
changelogChecker.check(os.pwd / "Toolkit.scala", "toolkit", Platform.Native)
1818
changelogChecker.check(os.pwd / "Toolkit.js.scala", "toolkit", Platform.Js)
1919
val toolkitTestFile = addToolkitDependency(os.pwd / "ToolkitTest.scala", config.organization, config.developmentVersion)
2020
changelogChecker.check(toolkitTestFile, "toolkit-test", Platform.Jvm)
21-
changelogChecker.check(toolkitTestFile, "toolkit-test", Platform.Native, firstRelease = true)
21+
changelogChecker.check(toolkitTestFile, "toolkit-test", Platform.Native)
2222
changelogChecker.check(toolkitTestFile, "toolkit-test", Platform.Js)
2323
catch
2424
case e: ChangelogException =>

changelog/Config.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ object Config:
77
def loadFromEnv: Config =
88
val organization = Properties.envOrElse("TOOLKIT_ORG", "org.scala-lang")
99
val outputDir = Properties.envOrNone("CHANGELOG_DIR").map(os.Path(_)).getOrElse(os.pwd / "changelog")
10-
val releaseVersion = Version.parse(Properties.envOrElse("TOOLKIT_VERSION_RELEASE", "0.3.0"))
11-
val developmentVersion = Version.parse(Properties.envOrElse("TOOLKIT_VERSION_DEVELOPMENT", "0.4.0"))
10+
val releaseVersion = Version.parse(Properties.envOrElse("TOOLKIT_VERSION_RELEASE", "0.4.0"))
11+
val developmentVersion = Version.parse(Properties.envOrElse("TOOLKIT_VERSION_DEVELOPMENT", "0.5.0"))
1212
Config(organization, outputDir, releaseVersion, developmentVersion)

changelog/exceptions.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
0.2.1
22
0.3.0
33
0.4.0
4+
0.5.0

0 commit comments

Comments
 (0)