Skip to content

Commit 5db6f21

Browse files
committed
updating to version 2.0.0-alpha.2
1 parent 8d57ff2 commit 5db6f21

File tree

4 files changed

+50
-10
lines changed

4 files changed

+50
-10
lines changed

CHANGELOG.md

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,27 @@
11
# Change Log
22

3-
## [v1.1.0](https://github.com/marklogic/marklogic-data-hub/tree/v1.1.0)
3+
## [Unreleased](https://github.com/marklogic/marklogic-data-hub/tree/v2.0.0-alpha.2)
44

5-
[Full Changelog](https://github.com/marklogic/marklogic-data-hub/compare/v1.0.2...v1.1.0)
5+
[Full Changelog](https://github.com/marklogic/marklogic-data-hub/compare/v1.1.0...v2.0.0-alpha.2)
6+
7+
**Implemented enhancements:**
8+
9+
- Allow exernal data to be passed in to a flow's options-map [\#334](https://github.com/marklogic/marklogic-data-hub/issues/334)
10+
- Integrate with Entity Services [\#283](https://github.com/marklogic/marklogic-data-hub/issues/283)
11+
- show traces for a given flow [\#277](https://github.com/marklogic/marklogic-data-hub/issues/277)
12+
13+
**Fixed bugs:**
14+
15+
- Returning json:object\(\) isn't invoking ES serialization in flow [\#345](https://github.com/marklogic/marklogic-data-hub/issues/345)
16+
17+
**Closed issues:**
18+
19+
- "No message available" when following Quick Start [\#352](https://github.com/marklogic/marklogic-data-hub/issues/352)
20+
- Add job-id to harmonized documents [\#351](https://github.com/marklogic/marklogic-data-hub/issues/351)
21+
- Entity modeling rendering incorrectly [\#347](https://github.com/marklogic/marklogic-data-hub/issues/347)
22+
23+
## [v1.1.0](https://github.com/marklogic/marklogic-data-hub/tree/v1.1.0) (2016-12-16)
24+
[Full Changelog](https://github.com/marklogic/marklogic-data-hub/compare/v2.0.0-alpha.1...v1.1.0)
625

726
**Implemented enhancements:**
827

@@ -23,9 +42,8 @@
2342
- Keep user database settings separate from hub database settings [\#325](https://github.com/marklogic/marklogic-data-hub/issues/325)
2443
- Create a non-admin user for doing hub stuff [\#200](https://github.com/marklogic/marklogic-data-hub/issues/200)
2544

26-
## [v2.0.1-alpha.1](https://github.com/marklogic/marklogic-data-hub/tree/v2.0.1-alpha.1)
27-
28-
[Full Changelog](https://github.com/marklogic/marklogic-data-hub/compare/v1.0.2...v2.0.1-alpha.1)
45+
## [v2.0.0-alpha.1](https://github.com/marklogic/marklogic-data-hub/tree/v2.0.0-alpha.1) (2016-11-30)
46+
[Full Changelog](https://github.com/marklogic/marklogic-data-hub/compare/v1.0.2...v2.0.0-alpha.1)
2947

3048
**Implemented enhancements:**
3149

CONTRIBUTING.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,28 @@ cd /path/to/data-hub-project/
3939
gradle build -x test
4040
```
4141

42+
#### Running your local hub instead of the cloud hosted one
43+
```bash
44+
cd /path/to/data-hub-project/
45+
gradle publishToMavenLocal
46+
cd /path/to/data-hub-project/ml-data-hub-plugin
47+
gradle publishToMavenLocal
48+
```
49+
50+
Then in your build.gradle file you will need to use the local version:
51+
```groovy
52+
buildscript {
53+
repositories {
54+
mavenLocal()
55+
jcenter()
56+
}
57+
dependencies {
58+
classpath "com.marklogic:ml-data-hub-plugin:(the version number you chose)"
59+
}
60+
}
61+
apply plugin: "com.marklogic.ml-data-hub-plugin"
62+
```
63+
4264
#### Running the QuickStart UI from source
4365
Make sure you have the prerequisites installed.
4466

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Alternatively you can include the jar file as a build dependency in your Java pr
4040
**Gradle**
4141

4242
```groovy
43-
compile('com.marklogic:marklogic-data-hub:2.0.0-alpha.1')
43+
compile('com.marklogic:marklogic-data-hub:2.0.0-alpha.2')
4444
```
4545

4646
**Maven**
@@ -49,15 +49,15 @@ compile('com.marklogic:marklogic-data-hub:2.0.0-alpha.1')
4949
<dependency>
5050
<groupId>com.marklogic</groupId>
5151
<artifactId>marklogic-data-hub</artifactId>
52-
<version>2.0.0-alpha.1</version>
52+
<version>2.0.0-alpha.2</version>
5353
<type>pom</type>
5454
</dependency>
5555
```
5656

5757
**Ivy**
5858

5959
```xml
60-
<dependency org='com.marklogic' name='marklogic-data-hub' rev='2.0.0-alpha.1'>
60+
<dependency org='com.marklogic' name='marklogic-data-hub' rev='2.0.0-alpha.2'>
6161
<artifact name='$AID' ext='pom'></artifact>
6262
</dependency>
6363
```
@@ -68,7 +68,7 @@ If you prefer to use gradle for all of your hub interactions then you can includ
6868

6969
```groovy
7070
plugins {
71-
id 'com.marklogic.ml-data-hub' version '2.0.0-alpha.1'
71+
id 'com.marklogic.ml-data-hub' version '2.0.0-alpha.2'
7272
}
7373
```
7474

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=2.0.0-alpha.1
1+
version=2.0.0-alpha.2

0 commit comments

Comments
 (0)