Skip to content

Commit b903efe

Browse files
committed
Fix log10 scale value to match ontology description and iterate for release
1 parent 23ecf0b commit b903efe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
// Project settings
99
group = "org.veupathdb.eda"
10-
version = "4.9.0"
10+
version = "4.9.1"
1111

1212
plugins {
1313
`java-library`

src/main/java/org/veupathdb/service/eda/ss/model/variable/VariableScale.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package org.veupathdb.service.eda.ss.model.variable;
22

33
public enum VariableScale {
4+
LOG_10("log"),
45
LOG_2("log2"),
5-
LOG_10("log10"),
66
NATURAL_LOG("ln");
77

88
private final String _value;

0 commit comments

Comments
 (0)