Skip to content

Commit b7e2a02

Browse files
committed
Merge branch 'release/1.0.2' into 1.0-master
2 parents 2bb9712 + e9b6fef commit b7e2a02

File tree

15 files changed

+102
-44
lines changed

15 files changed

+102
-44
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,21 @@
11
# Change Log
22

3-
## [v1.0.1](https://github.com/marklogic/marklogic-data-hub/tree/v1.0.1)
3+
## [v1.0.2](https://github.com/marklogic/marklogic-data-hub/tree/v1.0.2)
44

5+
[Full Changelog](https://github.com/marklogic/marklogic-data-hub/compare/v1.0.1...v1.0.2)
6+
7+
**Fixed bugs:**
8+
9+
- mlcp load from QuickStart GUI not loading data [\#331](https://github.com/marklogic/marklogic-data-hub/issues/331)
10+
11+
**Closed issues:**
12+
13+
- Possible typo on wiki page [\#333](https://github.com/marklogic/marklogic-data-hub/issues/333)
14+
- Tutorial instruction - create entity "Employees" instead of "Employee" [\#330](https://github.com/marklogic/marklogic-data-hub/issues/330)
15+
- mlcp job is not getting run + console log button not showing [\#329](https://github.com/marklogic/marklogic-data-hub/issues/329)
16+
- Error Extension hubstats does not exist. [\#328](https://github.com/marklogic/marklogic-data-hub/issues/328)
17+
18+
## [v1.0.1](https://github.com/marklogic/marklogic-data-hub/tree/v1.0.1) (2016-11-08)
519
[Full Changelog](https://github.com/marklogic/marklogic-data-hub/compare/v1.0.0...v1.0.1)
620

721
**Fixed bugs:**

CONTRIBUTING.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Looking to build the code from source? Look no further.
2424
You need these to get started
2525

2626
- Java 8 JDK
27-
- Gradle (the newer the better)
27+
- Gradle (3.1 or greater)
2828
- Node JS 6.5 or newer
2929
- Typings `npm -g install typings`
3030
- A decent IDE. IntelliJ is nice.
@@ -90,10 +90,10 @@ your vision does not align with that of a project maintainer.
9090
#### Create a branch for your changes
9191

9292
Okay, so you have decided to fix something. Create a feature branch
93-
and start hacking. **Note** that we use git flow and thus our most recent changes live on the develop branch.
93+
and start hacking. **Note** that we use git flow and thus our most recent changes live on the 1.0-develop branch.
9494

9595
```sh
96-
$ git checkout -b my-feature-branch -t origin/develop
96+
$ git checkout -b my-feature-branch -t origin/1.0-develop
9797
```
9898

9999
#### Formatting code
@@ -143,7 +143,7 @@ Use `git rebase` (not `git merge`) to sync your work from time to time.
143143

144144
```sh
145145
$ git fetch upstream
146-
$ git rebase upstream/develop
146+
$ git rebase upstream/1.0-develop
147147
```
148148

149149

@@ -187,10 +187,10 @@ from the main (upstream) repository:
187187
git push origin --delete my-feature-branch
188188
```
189189

190-
* Check out the develop branch:
190+
* Check out the 1.0-develop branch:
191191

192192
```shell
193-
git checkout develop -f
193+
git checkout 1.0-develop -f
194194
```
195195

196196
* Delete the local branch:
@@ -199,10 +199,10 @@ from the main (upstream) repository:
199199
git branch -D my-feature-branch
200200
```
201201

202-
* Update your develop with the latest upstream version:
202+
* Update your 1.0-develop with the latest upstream version:
203203

204204
```shell
205-
git pull --ff upstream develop
205+
git pull --ff upstream 1.0-develop
206206
```
207207

208208
[issue tracker]: https://github.com/marklogic/marklogic-data-hub/issues

README.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
OS | Status
44
--- | --- | ---
5-
Linux/Mac | [![Build Status](https://travis-ci.org/marklogic/marklogic-data-hub.svg?branch=master)](https://travis-ci.org/marklogic/marklogic-data-hub)
5+
Linux/Mac | [![Build Status](https://travis-ci.org/marklogic/marklogic-data-hub.svg?branch=1.0-master)](https://travis-ci.org/marklogic/marklogic-data-hub)
66
Windows | [![Windows Build status](https://ci.appveyor.com/api/projects/status/kgj0k5na59uhkvbv?svg=true)](https://ci.appveyor.com/project/paxtonhare/marklogic-data-hub)
77

88
# MarkLogic Data Hub
@@ -13,6 +13,14 @@ This project allows you to deploy a skeleton Data Hub into MarkLogic. With some
1313

1414
# Getting Started
1515

16+
###Prerequisites
17+
18+
You need these to get started
19+
20+
- Java 8 JDK
21+
- MarkLogic 8.0-2 or greater
22+
- Gradle 3.1 or greater **(Optional)**
23+
1624
###TL;DR
1725

1826
Head over to our [Getting Started Tutorial](https://marklogic.github.io/marklogic-data-hub/) to get up and running with the Data Hub.
@@ -36,7 +44,7 @@ Alternatively you can include the jar file as a build dependency in your Java pr
3644
**Gradle**
3745

3846
```groovy
39-
compile('com.marklogic:marklogic-data-hub:1.0.1')
47+
compile('com.marklogic:marklogic-data-hub:1.0.2')
4048
```
4149

4250
**Maven**
@@ -45,15 +53,15 @@ compile('com.marklogic:marklogic-data-hub:1.0.1')
4553
<dependency>
4654
<groupId>com.marklogic</groupId>
4755
<artifactId>marklogic-data-hub</artifactId>
48-
<version>1.0.1</version>
56+
<version>1.0.2</version>
4957
<type>pom</type>
5058
</dependency>
5159
```
5260

5361
**Ivy**
5462

5563
```xml
56-
<dependency org='com.marklogic' name='marklogic-data-hub' rev='1.0.1'>
64+
<dependency org='com.marklogic' name='marklogic-data-hub' rev='1.0.2'>
5765
<artifact name='$AID' ext='pom'></artifact>
5866
</dependency>
5967
```
@@ -64,7 +72,7 @@ If you prefer to use gradle for all of your hub interactions then you can includ
6472

6573
```groovy
6674
plugins {
67-
id 'com.marklogic.ml-data-hub' version '1.0.1'
75+
id 'com.marklogic.ml-data-hub' version '1.0.2'
6876
}
6977
```
7078

examples/spring-batch/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
id 'idea'
55
id 'application'
66
id 'net.saliman.properties' version '1.4.6'
7-
id 'com.marklogic.ml-data-hub' version '1.0.1'
7+
id 'com.marklogic.ml-data-hub' version '1.0.2'
88
}
99

1010
repositories {
@@ -13,7 +13,7 @@ repositories {
1313
}
1414

1515
dependencies {
16-
compile 'com.marklogic:marklogic-data-hub:1.0.1'
16+
compile 'com.marklogic:marklogic-data-hub:1.0.2'
1717
compile 'com.marklogic:marklogic-spring-batch-core:0.6.0'
1818
compile 'com.marklogic:ml-javaclient-util:2.9.1'
1919
testCompile 'com.marklogic:marklogic-spring-batch-test:0.6.0'

marklogic-data-hub/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ hubProjectDir=examples/hr-hub
3636
mlReplaceTokensInModules=true
3737
mlUseRoxyTokenPrefix=false
3838

39-
version=1.0.1
39+
version=1.0.2
4040

4141

marklogic-data-hub/src/main/resources/scaffolding/build_gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
id 'eclipse'
44
id 'idea'
55
id 'net.saliman.properties' version '1.4.6'
6-
id 'com.marklogic.ml-data-hub' version '1.0.1'
6+
id 'com.marklogic.ml-data-hub' version '1.0.2'
77
}
88

99
repositories {
@@ -12,6 +12,6 @@ repositories {
1212
}
1313

1414
dependencies {
15-
compile 'com.marklogic:marklogic-data-hub:1.0.1'
15+
compile 'com.marklogic:marklogic-data-hub:1.0.2'
1616
compile 'com.marklogic:marklogic-xcc:8.0.5'
1717
}

marklogic-data-hub/src/trace-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "data-hub-quickstart",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"license": "APACHE",
55
"homepage": "https://github.com/marklogic/marklogic-data-hub",
66
"scripts": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version=1.0.1
1+
version=1.0.2
22
group=com.marklogic

quick-start/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=1.0.1
1+
version=1.0.2

quick-start/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "data-hub-quickstart",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"license": "APACHE",
55
"homepage": "https://github.com/marklogic/marklogic-data-hub",
66
"angular-cli": {},

0 commit comments

Comments
 (0)