diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5eadb4d..a1821ca 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ qwikidata Change Log ==================== +v0.3.2 +====== + +**Fixed**: + +* moved important links to bottom of documentation to let examples shine + v0.3.1 ====== diff --git a/README.rst b/README.rst index 812d2b7..8f037f1 100644 --- a/README.rst +++ b/README.rst @@ -18,12 +18,6 @@ in a Pythonic way. It also provides a Pythonic way to access three data sources * `sparql query service`_ * `json dump`_ -Important Links -=============== - -* documentation: https://qwikidata.rtfd.io/ -* PyPI: https://pypi.org/project/qwikidata/ -* github: https://github.com/kensho-technologies/qwikidata/ Quick Install ============= @@ -55,18 +49,25 @@ OR * `readthedocs`_ - License ======= Licensed under the Apache 2.0 License. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. + Copyright ========= Copyright 2019 Kensho Technologies, LLC. +Important Links +=============== + +`readthedocs`_ | `PyPI`_ | `github`_ + + + .. |build-status| image:: https://img.shields.io/travis/kensho-technologies/qwikidata.svg?style=flat :alt: Build Status :scale: 100% @@ -99,3 +100,5 @@ Copyright 2019 Kensho Technologies, LLC. .. _json dump: https://www.wikidata.org/wiki/Wikidata:Database_download .. _examples folder: https://github.com/kensho-technologies/qwikidata/tree/master/examples .. _readthedocs: https://qwikidata.readthedocs.io/en/stable/readme.html +.. _PyPI: https://pypi.org/project/qwikidata/ +.. _github: https://github.com/kensho-technologies/qwikidata/ diff --git a/docs/readme.rst b/docs/readme.rst index 627e80b..6894370 100644 --- a/docs/readme.rst +++ b/docs/readme.rst @@ -18,12 +18,6 @@ in a Pythonic way. It also provides a Pythonic way to access three data sources * `sparql query service`_ * `json dump`_ -Important Links -=============== - -* documentation: https://qwikidata.rtfd.io/ -* PyPI: https://pypi.org/project/qwikidata/ -* github: https://github.com/kensho-technologies/qwikidata/ Quick Install ============= @@ -65,18 +59,24 @@ JSON Dump .. literalinclude:: ../examples/basic_json_dump.py - License ======= Licensed under the Apache 2.0 License. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. + Copyright ========= Copyright 2019 Kensho Technologies, LLC. +Important Links +=============== + +`readthedocs`_ | `PyPI`_ | `github`_ + + .. |build-status| image:: https://img.shields.io/travis/kensho-technologies/qwikidata.svg?style=flat :alt: Build Status :scale: 100% @@ -107,3 +107,6 @@ Copyright 2019 Kensho Technologies, LLC. .. _linked data interface: https://www.wikidata.org/wiki/Wikidata:Data_access .. _sparql query service: https://www.wikidata.org/wiki/Wikidata:SPARQL_query_service .. _json dump: https://www.wikidata.org/wiki/Wikidata:Database_download +.. _readthedocs: https://qwikidata.readthedocs.io/en/stable/readme.html +.. _PyPI: https://pypi.org/project/qwikidata/ +.. _github: https://github.com/kensho-technologies/qwikidata/ diff --git a/qwikidata/__init__.py b/qwikidata/__init__.py index 0ea8ac3..7b5b60d 100644 --- a/qwikidata/__init__.py +++ b/qwikidata/__init__.py @@ -2,4 +2,4 @@ """Metadata for this package.""" __package_name__ = "qwikidata" -__version__ = "0.3.1" +__version__ = "0.3.2"