Skip to content

Commit

Permalink
Switched from 0.1.2-rc0 to 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix Finkbeiner committed Nov 14, 2019
1 parent 6ae6b90 commit 3f2b47e
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 12 deletions.
Binary file modified docs/doctrees/environment.pickle
Binary file not shown.
Binary file modified docs/doctrees/index.doctree
Binary file not shown.
4 changes: 3 additions & 1 deletion docs/html/genindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,12 @@ <h2 id="C">C</h2>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="index.html#weaviate.client.Client">Client (class in weaviate.client)</a>
</li>
<li><a href="index.html#weaviate.client.Client.create_schema">create_schema() (weaviate.client.Client method)</a>
<li><a href="index.html#weaviate.client.Client.contains_schema">contains_schema() (weaviate.client.Client method)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="index.html#weaviate.client.Client.create_schema">create_schema() (weaviate.client.Client method)</a>
</li>
<li><a href="index.html#weaviate.client.Client.create_thing">create_thing() (weaviate.client.Client method)</a>
</li>
<li><a href="index.html#weaviate.client.Client.create_things_in_batch">create_things_in_batch() (weaviate.client.Client method)</a>
Expand Down
19 changes: 18 additions & 1 deletion docs/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,20 @@
</dl>
</dd></dl>

<dl class="method">
<dt id="weaviate.client.Client.contains_schema">
<code class="sig-name descname">contains_schema</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#weaviate.client.Client.contains_schema" title="Permalink to this definition"></a></dt>
<dd><p>To check if weaviate already contains a schema.</p>
<dl class="field-list simple">
<dt class="field-odd">Returns</dt>
<dd class="field-odd"><p>True if a schema is present otherwise False</p>
</dd>
<dt class="field-even">Raises</dt>
<dd class="field-even"><p>ConnectionError: In case of network issues.</p>
</dd>
</dl>
</dd></dl>

<dl class="method">
<dt id="weaviate.client.Client.create_schema">
<code class="sig-name descname">create_schema</code><span class="sig-paren">(</span><em class="sig-param">schema</em><span class="sig-paren">)</span><a class="headerlink" href="#weaviate.client.Client.create_schema" title="Permalink to this definition"></a></dt>
Expand Down Expand Up @@ -191,7 +205,10 @@
<dl class="field-list simple">
<dt class="field-odd">Returns</dt>
<dd class="field-odd"><p>a dict containing the schema.
If no schema classes are present yet then the classes arrys are empty</p>
The schema may be empty. To see if a schema has already been loaded use contains_schema.</p>
</dd>
<dt class="field-even">Raises</dt>
<dd class="field-even"><p>ConnectionError: In case of network issues.</p>
</dd>
</dl>
</dd></dl>
Expand Down
Binary file modified docs/html/objects.inv
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/html/searchindex.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 12 additions & 8 deletions publishing.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
To publish a new documentation needs to be build:
`make -C documentation html`
Then build the new package:
`python setup.py bdist_wheel`
And check it:
`twine check dist/*`
Finally publish:
`twine upload dist/*`
1. To publish a new documentation needs to be build:\
`make -C documentation html`\
2. Make sure you set the right version in the `setup.py`
3. Then build the new package:\
`python setup.py bdist_wheel`\
4. And check it:\
`twine check dist/*`\
5. Commit the most current version to GitHub if this has not been done yet.
6. Make sure you gave the commit of the current version a proper tag:\
`git tag -a '<your tag>' -m '<some message for the tag>' && git push --tags`\
Finally publish:\
`twine upload dist/*`\
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
long_description = f.read()

setup(name="weaviate-client",
version="0.1.2-rc0",
version="0.1.2",
description="A python native weaviate client",
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 3f2b47e

Please sign in to comment.