Skip to content

Commit e792833

Browse files
committed
Do not use --javascript.copy-installation for 3.3.19
1 parent 9c51a88 commit e792833

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# ArangoDB Starter Changelog
22

3-
## Changes from version 0.13.6 to master
3+
## Changes from version 0.13.7 to master
4+
5+
## Changes from version 0.13.6 to 0.13.7
6+
7+
- Do not use --javascript.copy-installation for 3.3.19.
48

59
## Changes from version 0.13.5 to 0.13.6
610

service/database_features.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ type DatabaseFeatures driver.Version
3030

3131
const (
3232
v32 driver.Version = "3.2.0"
33-
v33_19 driver.Version = "3.3.19"
33+
v33_20 driver.Version = "3.3.20"
3434
v34 driver.Version = "3.4.0"
3535
)
3636

@@ -59,7 +59,7 @@ func (v DatabaseFeatures) HasCopyInstallationFiles() bool {
5959
if driver.Version(v).CompareTo(v34) >= 0 {
6060
return true
6161
}
62-
if driver.Version(v).CompareTo(v33_19) >= 0 {
62+
if driver.Version(v).CompareTo(v33_20) >= 0 {
6363
return true
6464
}
6565
return false

0 commit comments

Comments
 (0)