Skip to content
This repository was archived by the owner on Jan 29, 2022. It is now read-only.

Commit f6f74f9

Browse files
author
Luke Lovett
committed
BUMP 2.0.0
1 parent c3c6585 commit f6f74f9

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

History.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
2.0.0 / 15th of August, 2016
2+
============================
3+
4+
This is a major release touting several new features. As a major release, it
5+
removes several deprecated methods and objects, breaking API in ways that should
6+
not affect most users of Hadoop tools.
7+
8+
Some of the major new features introduced in this version include:
9+
10+
* Ability to collocate Hadoop nodes and MongoDB shards for data locality (HADOOP-202)
11+
* Add GridFSInputFormat (HADOOP-272)
12+
* Add MongoSampleSplitter (HADOOP-283)
13+
* Support document replacement (HADOOP-263)
14+
* Add back support for Hadoop 1.2.x (HADOOP-246)
15+
16+
For complete details on the issues resolved in 2.0.0, consult the release notes
17+
on Jira: https://jira.mongodb.org/browse/HADOOP/fixforversion/15622
18+
19+
This version is identical to 2.0.0-rc0.
20+
121
2.0.0-rc0 / 26th of June, 2016
222
==============================
323

@@ -16,6 +36,8 @@ Some of the major new features introduced in this version include:
1636
For complete details on the issues resolved in 2.0.0, consult the release notes
1737
on Jira: https://jira.mongodb.org/browse/HADOOP/fixforversion/15622
1838

39+
This release candidate became the stable 2.0.0 version.
40+
1941
1.5.2 / 28th of March, 2016
2042
===========================
2143

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ if(project.hasProperty("clusterVersion")) {
6262
}
6363

6464
allprojects {
65-
version = '2.0.0-rc0'
65+
version = '2.0.0'
6666
group = 'org.mongodb.mongo-hadoop'
6767
}
6868

core/src/test/java/com/mongodb/hadoop/testutils/BaseHadoopTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public abstract class BaseHadoopTest {
3030

3131
public static final String HADOOP_HOME;
3232
public static final String PROJECT_VERSION = loadProperty("project"
33-
+ ".version", "2.0.0-rc0");
33+
+ ".version", "2.0.0");
3434
public static final String HADOOP_VERSION = loadProperty("hadoop.version", "2.7.2");
3535

3636
// public static final String HIVE_HOME;

0 commit comments

Comments
 (0)