Skip to content

Commit dbc425a

Browse files
committed
Merge branch 'release'
2 parents ad1fe18 + 72f66e0 commit dbc425a

File tree

11 files changed

+13
-11
lines changed

11 files changed

+13
-11
lines changed

client/java-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.seldon</groupId>
99
<artifactId>seldon-parent</artifactId>
10-
<version>1.4.1</version>
10+
<version>1.4.2</version>
1111
<relativePath>../../pom.xml</relativePath>
1212
</parent>
1313
<artifactId>seldon-java-client</artifactId>

offline-jobs/spark/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.seldon</groupId>
66
<artifactId>seldon-parent</artifactId>
7-
<version>1.4.1</version>
7+
<version>1.4.2</version>
88
<relativePath>../../pom.xml</relativePath>
99
</parent>
1010

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<groupId>io.seldon</groupId>
99
<artifactId>seldon-parent</artifactId>
10-
<version>1.4.1</version>
10+
<version>1.4.2</version>
1111
<packaging>pom</packaging>
1212
<name>Seldon Project Parent POM</name>
1313
<url>http://seldon.io/</url>

python/docs/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ clean:
5353

5454
html:
5555
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
56-
cd $(BUILDDIR)/html ; sed -i 's/_modules/modules/g' seldon.html ; sed -i 's/_modules/modules/g' seldon.pipeline.html ; sed -i 's/_modules/modules/g' seldon.cli.html ; sed -i 's/_modules/modules/g' seldon.luigi.html ; sed -i 's/_modules/modules/g' seldon.microservice.html ; sed -i 's/_modules/modules/g' seldon.misc.html ; sed -i 's/_modules/modules/g' seldon.text.html
56+
cd $(BUILDDIR)/html ; sed -i 's/_modules/modules/g' seldon.html ; sed -i 's/_modules/modules/g' seldon.pipeline.html ; sed -i 's/_modules/modules/g' seldon.cli.html ; sed -i 's/_modules/modules/g' seldon.luigi.html ; sed -i 's/_modules/modules/g' seldon.microservice.html ; sed -i 's/_modules/modules/g' seldon.misc.html ; sed -i 's/_modules/modules/g' seldon.text.html ; sed -i 's/_modules/modules/g' seldon.anomaly.html
5757
@echo
5858
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
5959

python/docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@
6565
# built documents.
6666
#
6767
# The short X.Y version.
68-
version = '1.0'
68+
version = '2.2.1'
6969
# The full version, including alpha/beta/rc tags.
70-
release = '1.0'
70+
release = '2.2.1'
7171

7272
# The language for content autogenerated by Sphinx. Refer to documentation
7373
# for a list of supported languages.

python/docs/seldon.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@ Subpackages
66

77
.. toctree::
88

9+
seldon.anomaly
910
seldon.cli
1011
seldon.luigi
1112
seldon.microservice
1213
seldon.misc
1314
seldon.pipeline
1415
seldon.text
1516

17+
1618
Submodules
1719
----------
1820

python/seldon/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from .util import RecommenderWrapper,Recommender,Extension,ExtensionWrapper,Recommender_wrapper,Extension_wrapper
44

5-
__version__ = '2.2'
5+
__version__ = '2.2.1'
66

77
class NullHandler(logging.Handler):
88
def emit(self, record):

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
dependency_links = [
1515
'https://github.com/SeldonIO/wabbit_wappa/archive/3.0.2.zip#egg=wabbit-wappa-3.0.2'
1616
],
17-
packages=['seldon', 'seldon.pipeline', 'seldon.microservice', 'seldon.text', 'seldon.shell', 'seldon.cli','seldon.misc','seldon.luigi','seldon.rpc'],
17+
packages=['seldon', 'seldon.pipeline', 'seldon.microservice', 'seldon.text', 'seldon.shell', 'seldon.cli','seldon.misc','seldon.luigi','seldon.rpc','seldon.anomaly'],
1818
package_dir={'seldon.shell': 'seldon/shell', 'seldon.cli': 'seldon/cli'},
1919
package_data={'seldon.shell': ['dbschema/mysql/api.sql', 'dbschema/mysql/client.sql'], 'seldon.cli': ['dbschema/mysql/api.sql', 'dbschema/mysql/client.sql', 'grafana/client-dashboard.json']},
2020
scripts=['bin/seldon-shell','bin/seldon-cli'],

server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.seldon</groupId>
99
<artifactId>seldon-parent</artifactId>
10-
<version>1.4.1</version>
10+
<version>1.4.2</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313
<artifactId>seldon-server</artifactId>

stream/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.seldon</groupId>
66
<artifactId>seldon-parent</artifactId>
7-
<version>1.4.1</version>
7+
<version>1.4.2</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

0 commit comments

Comments
 (0)