From c960f134694351b12c3c872551ea24aab5cf7827 Mon Sep 17 00:00:00 2001 From: Github Actions Date: Thu, 17 Aug 2023 11:50:48 +0000 Subject: [PATCH 1/3] Version bump --- box.json | 2 +- changelog.md | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/box.json b/box.json index 6293479..7d58c54 100644 --- a/box.json +++ b/box.json @@ -1,6 +1,6 @@ { "name":"TestBox CLI", - "version":"1.2.0", + "version":"1.3.0", "location":"https://downloads.ortussolutions.com/ortussolutions/commandbox-modules/testbox-cli/@build.version@/testbox-cli-@build.version@.zip", "slug":"testbox-cli", "author":"Ortus Solutions, Corp", diff --git a/changelog.md b/changelog.md index 3dead11..1296059 100644 --- a/changelog.md +++ b/changelog.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.2.0] - 2023-08-17 + ### Added - If a localized version of TestBox cannot be found, then it installs one for you @@ -77,7 +79,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - New `testbox apidocs` command to open the TestBox API Docs in your browser. - Initial Creation of this project -[Unreleased]: https://github.com/Ortus-Solutions/testbox-cli/compare/v1.1.3...HEAD +[Unreleased]: https://github.com/Ortus-Solutions/testbox-cli/compare/v1.2.0...HEAD + +[1.2.0]: https://github.com/Ortus-Solutions/testbox-cli/compare/v1.1.3...v1.2.0 [1.1.3]: https://github.com/Ortus-Solutions/testbox-cli/compare/v1.1.2...v1.1.3 From f893af299ed65ececbff6b7ea89f55a3c96f0e17 Mon Sep 17 00:00:00 2001 From: Luis Majano Date: Thu, 17 Aug 2023 16:43:03 +0200 Subject: [PATCH 2/3] - ensureTestBox() was not looking at the right folder --- box.json | 2 +- changelog.md | 4 ++++ commands/testbox/run.cfc | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/box.json b/box.json index 7d58c54..ac527e9 100644 --- a/box.json +++ b/box.json @@ -1,6 +1,6 @@ { "name":"TestBox CLI", - "version":"1.3.0", + "version":"1.2.1", "location":"https://downloads.ortussolutions.com/ortussolutions/commandbox-modules/testbox-cli/@build.version@/testbox-cli-@build.version@.zip", "slug":"testbox-cli", "author":"Ortus Solutions, Corp", diff --git a/changelog.md b/changelog.md index 1296059..ab0c358 100644 --- a/changelog.md +++ b/changelog.md @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Fixed + +- ensureTestBox() was not looking at the right folder + ## [1.2.0] - 2023-08-17 ### Added diff --git a/commands/testbox/run.cfc b/commands/testbox/run.cfc index 74c8477..c0aa108 100644 --- a/commands/testbox/run.cfc +++ b/commands/testbox/run.cfc @@ -440,6 +440,7 @@ component { .toConsole(); command( "install" ).params( "testbox", modulePath ).run(); + testBoxPath = modulePath & "/testbox" } // Add our mapping From 12ceba2ca5dff8719e989f09977d55a3cd103b70 Mon Sep 17 00:00:00 2001 From: lmajano Date: Thu, 17 Aug 2023 14:43:33 +0000 Subject: [PATCH 3/3] Apply cfformat changes --- commands/testbox/run.cfc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/testbox/run.cfc b/commands/testbox/run.cfc index c0aa108..11b5ff9 100644 --- a/commands/testbox/run.cfc +++ b/commands/testbox/run.cfc @@ -440,7 +440,7 @@ component { .toConsole(); command( "install" ).params( "testbox", modulePath ).run(); - testBoxPath = modulePath & "/testbox" + testBoxPath = modulePath & "/testbox" } // Add our mapping