Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
fzumstein committed Oct 21, 2018
1 parent 382530e commit 737612b
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 5 deletions.
2 changes: 2 additions & 0 deletions docs/rest_api.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.. _rest_api:

REST API
========

Expand Down
2 changes: 1 addition & 1 deletion docs/threading.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Threading
=========

.. versionadded:: 0.12.2
.. versionadded:: 0.13.0

While xlwings is not technically thread safe, it's still easy to use it in threads as long as you have at least v0.12.2
and stick to a simple rule: Do not pass xlwings objects to threads. This rule isn't a requirement on macOS, but it's
Expand Down
27 changes: 24 additions & 3 deletions docs/whatsnew.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,31 @@
What's New
==========

v0.X.X (X X, 2018)
------------------
v0.13.0 (Oct 22, 2018)
----------------------

**Features**:

This release adds a REST API server to xlwings, allowing you to easily expose your workbook over the internet,
see :ref:`rest_api` for all the details!

**Enhancements**:

* Dynamic arrays are now more robust. Before, they often didn't manage to write everything when there was a lot going on in the workbook (:issue:`880`)
* Jagged arrays (lists of lists where not all rows are of equal length) now raise an error (:issue:`942`)
* xlwings can now be used with threading, see the docs: :ref:`threading` (:issue:`759`).
* [Win] xlwings now enforces pywin32 224 when installing xlwings on Python 3.7 (:issue:`959`)
* New :any:`xlwings.Sheet.used_range` property (:issue:`112`)

**Bug Fixes**:

* The current directory is now inserted in front of everything else on the PYTHONPATH (:issue:`958`)
* Standalone file VBA module was fixed (:issue:`960`)

**Breaking changes**:

[Enhancement] xlwings can now be used with threading, see the docs: :ref:`threading` (:issue:`759`).
* Members of the ``xw.apps`` collection are now accessed by key (=PID) instead of index, e.g.:
``xw.apps[12345]`` instead of ``xw.apps[0]``. The apps collection now also has a new ``xw.apps.keys()`` method. (:issue:`951`)

v0.12.1 (Oct 7, 2018)
---------------------
Expand Down
4 changes: 3 additions & 1 deletion scripts/build_rest_api_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ def generate_get_endpoint(endpoint):
get_book_urls = sorted(get_book_urls)

text = []
intro = """REST API
intro = """.. _rest_api:
REST API
========
New in v0.13.0
Expand Down

0 comments on commit 737612b

Please sign in to comment.