Skip to content

Commit 7af2aef

Browse files
committed
v1.2.0
2 parents e93946b + ef0c6f7 commit 7af2aef

3 files changed

Lines changed: 12 additions & 2 deletions

File tree

box.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"CommandBox Sprint Namer",
3-
"version":"1.1.0",
3+
"version":"1.2.0",
44
"location":"https://downloads.ortussolutions.com/ortussolutions/commandbox-modules/commandbox-sprint-namer/@build.version@/commandbox-sprint-namer-@build.version@.zip",
55
"slug":"commandbox-sprint-namer",
66
"author":"Ortus Solutions, Corp",

changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
----
99

10+
## [v1.2.0] => 2022-MAR-30
11+
12+
### Added
13+
14+
* Capitalize first letters
15+
16+
----
17+
1018
## [v1.1.0] => 2022-MAR-16
1119

1220
### Added

commands/sprint-namer/go.cfc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ component excludeFromHelp=true {
33
property name="mockdata" inject="mockData@mockDatacfc";
44

55
function run(){
6-
print.line( mockData.mock( "name" : "words:2", $returnType : "struct" ).name );
6+
print.line(
7+
ucFirst( mockData.mock( "name" : "words:2", $returnType : "struct" ).name, true )
8+
);
79
}
810

911
}

0 commit comments

Comments
 (0)