Skip to content

Commit 7c9c454

Browse files
authored
Features/kshape (#25)
* Adding Khiva and updating copyright year to 2019 * Adding Clustering module. * Add tests for Clustering * Fix tests. * Testing CI
1 parent 466d65c commit 7c9c454

40 files changed

+186
-52
lines changed

.CI/travis/build-and-test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/bin/bash
2-
# Copyright (c) 2018 Shapelets.io
2+
# Copyright (c) 2019 Shapelets.io
33
#
44
# This Source Code Form is subject to the terms of the Mozilla Public
55
# License, v. 2.0. If a copy of the MPL was not distributed with this
66
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
77

88
mvn javadoc:javadoc
9-
mvn test
9+
mvn test

.CI/travis/install-arrayfire.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# Copyright (c) 2018 Shapelets.io
2+
# Copyright (c) 2019 Shapelets.io
33
#
44
# This Source Code Form is subject to the terms of the Mozilla Public
55
# License, v. 2.0. If a copy of the MPL was not distributed with this

.CI/travis/install-java.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# Copyright (c) 2018 Shapelets.io
2+
# Copyright (c) 2019 Shapelets.io
33
#
44
# This Source Code Form is subject to the terms of the Mozilla Public
55
# License, v. 2.0. If a copy of the MPL was not distributed with this

.CI/travis/install-khiva.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# Copyright (c) 2018 Shapelets.io
2+
# Copyright (c) 2019 Shapelets.io
33
#
44
# This Source Code Form is subject to the terms of the Mozilla Public
55
# License, v. 2.0. If a copy of the MPL was not distributed with this

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2018 Shapelets.io
1+
# Copyright (c) 2019 Shapelets.io
22
#
33
# This Source Code Form is subject to the terms of the Mozilla Public
44
# License, v. 2.0. If a copy of the MPL was not distributed with this

.github/CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,4 @@ If some members of staff were angered by the incident, it is best to apologise t
9090

9191
## Attribution
9292

93-
This Code of Conduct was adapted from both [Golang](https://golang.org/conduct) an the [Golang UK Conference](http://golanguk.com/conduct/).
93+
This Code of Conduct was adapted from both [Golang](https://golang.org/conduct) an the [Golang UK Conference](http://golanguk.com/conduct/).

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2018 Shapelets.io
1+
# Copyright (c) 2019 Shapelets.io
22
#
33
# This Source Code Form is subject to the terms of the Mozilla Public
44
# License, v. 2.0. If a copy of the MPL was not distributed with this

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,4 @@ Start a new docker container.
8080
```
8181
# Start docker
8282
docker run --rm -ti shapelets/khiva-java
83-
```
83+
```

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ mvn javadoc:javadoc
4444
## Contributing
4545
The rules to contribute to this project are described [here](CONTRIBUTING.md)
4646

47-
[![Powered by Shapelets](https://img.shields.io/badge/powered%20by-Shapelets-orange.svg?style=flat&colorA=E1523D&colorB=007D8A)](https://shapelets.io)
47+
[![Powered by Shapelets](https://img.shields.io/badge/powered%20by-Shapelets-orange.svg?style=flat&colorA=E1523D&colorB=007D8A)](https://shapelets.io)

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</properties>
77
<groupId>io.shapelets</groupId>
88
<artifactId>khiva</artifactId>
9-
<version>0.1.1</version>
9+
<version>0.2.0</version>
1010

1111
<name>khiva-java</name>
1212
<url>https://github.com/shapelets/khiva-java</url>

0 commit comments

Comments
 (0)