Skip to content
This repository has been archived by the owner on Feb 8, 2019. It is now read-only.
/ dirsuite Public archive

Commit

Permalink
release: fs:0.8.0, testing:0.6.0
Browse files Browse the repository at this point in the history
Signed-off-by: jaa127 <jaa@sn127.fi>
  • Loading branch information
jaa127 committed Jan 19, 2017
1 parent e12818b commit 23f3124
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 5 deletions.
24 changes: 23 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,29 @@ Utils-fs and utils-testing projects use [semantic versioning](http://semver.org/
Latest releases (for scala 2.12) are:

* utils-fs: 0.8.0
* utils-testing: 0.5.1
* utils-testing: 0.6.0

#### fs:0.8.0, testing:0.6.0

- fs:
- no changes
- testing:
- strict exec-file format
- new `runDualAssertionDirSuiteTestCase`s for asserting multistep failures
- API-Changes
- API-Change:testing:chg: runDirSuite -> runDirSuiteTestCases
- API-Change:testing:chg: ignoreDirSuite -> ignoreDirSuiteTestCases
- API-Change:testing:new: runDualAssertionDirSuiteTestCases
- API-Change:testing:new: ignoreDualAssertionDirSuiteTestCases
- API-Change:testing:chg: registerDirSuiteTest
- API-Change:testing:new: getTestCases
- API-Change:testing:chg: testExecutor
- API-Change:testing:chg: exec file format
- API-Change:testing:new: tokenizer, new function
- API-Change:testing:chg: execParser => parseExec
- API-Change:testing:chg: argsMapping => mapArgs
- API-Change:testing:chg: getOutput => mapOutput


#### fs:0.8.0, testing:0.5.1

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Release artifacts are published on the maven
Library configuration for sbt:

libraryDependencies += "fi.sn127" %% "utils-fs" % "0.8.0"
libraryDependencies += "fi.sn127" %% "utils-testing" % "0.5.1"
libraryDependencies += "fi.sn127" %% "utils-testing" % "0.6.0"

For release information and version history details, see [CHANGELOG](./CHANGELOG.md).

Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ lazy val testing = (project in file("testing")).
settings(commonSettings: _*).
settings(
name := "utils-testing",
version := "0.6.0-pre",
isSnapshot := true,
version := "0.6.0",
isSnapshot := false,
fork in run := true,
libraryDependencies += scalaArm,
libraryDependencies += scalatest
Expand Down
2 changes: 1 addition & 1 deletion examples/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ name := "DirSuiteExample"

scalaVersion := "2.12.1"

libraryDependencies += "fi.sn127" %% "utils-testing" % "0.6.0-pre" % "test"
libraryDependencies += "fi.sn127" %% "utils-testing" % "0.6.0" % "test"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.1" % "test"

0 comments on commit 23f3124

Please sign in to comment.