Skip to content

Commit 61c440c

Browse files
authored
Merge pull request #1697 from BillFarber/task/prep70Release
Prepare for 7.0 release
2 parents e5c65fd + 29f427e commit 61c440c

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,6 @@ Full documentation is available at:
4949
* [Java Application Developer's Guide](http://docs.marklogic.com/guide/java)
5050
* [JavaDoc](http://docs.marklogic.com/javadoc/client/index.html)
5151

52-
## Including JAXB support
53-
54-
TODO, Need to rewrite this for Java Client 7.0.0.
55-
5652
## Support
5753

5854
The MarkLogic Java Client is maintained by [MarkLogic](https://www.marklogic.com/) Engineering and is made available under

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group=com.marklogic
2-
version=7.0-SNAPSHOT
2+
version=7.0.0
33
describedName=MarkLogic Java Client API
44
publishUrl=file:../marklogic-java/releases
55

marklogic-client-api/src/main/java/com/marklogic/client/type/PlanSearchOptions.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,25 @@
99
*/
1010
public interface PlanSearchOptions {
1111
/**
12-
* Changed in release 6.7.0 to return a float, as the server requires a float and throws an error on a double.
12+
* Changed in release 7.0.0 to return a float, as the server requires a float and throws an error on a double.
1313
*/
1414
XsFloatVal getQualityWeight();
1515
ScoreMethod getScoreMethod();
1616
/**
17-
* @since 6.7.0
17+
* @since 7.0.0
1818
*/
1919
XsDoubleVal getBm25LengthWeight();
2020
/**
21-
* Changed in release 6.7.0 to return a float, as the server requires a float and throws an error on a double.
21+
* Changed in release 7.0.0 to return a float, as the server requires a float and throws an error on a double.
2222
*/
2323
PlanSearchOptions withQualityWeight(float qualityWeight);
2424
/**
25-
* Changed in release 6.7.0 to return a float, as the server requires a float and throws an error on a double.
25+
* Changed in release 7.0.0 to return a float, as the server requires a float and throws an error on a double.
2626
*/
2727
PlanSearchOptions withQualityWeight(XsFloatVal qualityWeight);
2828
PlanSearchOptions withScoreMethod(ScoreMethod scoreMethod);
2929
/**
30-
* @since 6.7.0
30+
* @since 7.0.0
3131
*/
3232
PlanSearchOptions withBm25LengthWeight(double bm25LengthWeight);
3333
enum ScoreMethod {

0 commit comments

Comments
 (0)