Skip to content

Commit ff9d522

Browse files
committed
missing build version
1 parent e1c8783 commit ff9d522

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

box.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"DocBox",
3-
"version":"3.3.0",
3+
"version":"4.1.0",
44
"author":"Ortus Solutions, Corp",
55
"location":"http://downloads.ortussolutions.com/ortussolutions/docbox/@build.version@/[email protected]@.zip",
66
"homepage":"https://forgebox.io/view/docbox",

build/Build.cfc

+12-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,18 @@ component {
159159
.params(
160160
path = "/#variables.projectBuildDir#/**",
161161
token = "@build.version@",
162-
replacement = arguments.version
162+
replacement = arguments.version,
163+
verbose = true
164+
)
165+
.run();
166+
167+
print.greenLine( "Updating build identifier to [#arguments.buildID#-#arguments.branch#]..." ).toConsole();
168+
command( "tokenReplace" )
169+
.params(
170+
path = "/#variables.projectBuildDir#/**",
171+
token = ( arguments.branch == "master" ? "@build.number@" : "[email protected]@" ),
172+
replacement = ( arguments.branch == "master" ? arguments.buildID : "-snapshot" ),
173+
verbose = true
163174
)
164175
.run();
165176

changelog.md

+7
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1818

1919
### Fixed
2020

21+
- Build Versions and changelog
2122
- Removal of `box.zip` in root from old scripts
2223

2324
### BREAKING
@@ -34,6 +35,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3435

3536
- Fixes support for Adobe 2018. (Mainly in the CommandBox strategy.)
3637

38+
## [4.0.0] - 2023-08-03
39+
40+
### Changed
41+
42+
- Dropped Adobe 2016 support
43+
3744
## [3.0.0]
3845

3946
### Added

0 commit comments

Comments
 (0)