Skip to content

Commit 4f3dcb0

Browse files
docs
1 parent deb6adc commit 4f3dcb0

11 files changed

+24
-23
lines changed

docs/CHANGELOG.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -812,20 +812,21 @@ <h2>2.0.0<a class="headerlink" href="#id1" title="Permalink to this heading">¶<
812812
<section id="added">
813813
<h3>Added<a class="headerlink" href="#added" title="Permalink to this heading"></a></h3>
814814
<ul class="simple">
815+
<li><p>Support for Python 3.11 and 3.12</p></li>
815816
<li><p>Integration of the <code class="docutils literal notranslate"><span class="pre">lucit-licensing-python</span></code> library for verifying the UNICORN Binance Suite license. A license can be
816817
purchased in the LUCIT Online Shop: https://shop.lucit.services/software/unicorn-binance-suite</p></li>
817-
</ul>
818-
</section>
819-
<section id="changed">
820-
<h3>Changed<a class="headerlink" href="#changed" title="Permalink to this heading"></a></h3>
821-
<ul class="simple">
822818
<li><p>License change from MIT to LSOSL - LUCIT Synergetic Open Source License:
823819
https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/LICENSE</p></li>
824820
<li><p>Conversion to a C++ compiled Cython package with precompiled as well as PyPy and source code wheels.</p></li>
825821
<li><p>Setup of a “Trusted Publisher” deployment chain. The source code is transparently packaged into wheels directly from
826822
the GitHub repository by a GitHub action for all possible platforms and published directly as a new release on GitHub
827823
and PyPi. A second process from Conda-Forge then uploads it to Anaconda. Thus, the entire deployment process is
828824
transparent and the user can be sure that the compilation of a version fully corresponds to the source code.</p></li>
825+
</ul>
826+
</section>
827+
<section id="changed">
828+
<h3>Changed<a class="headerlink" href="#changed" title="Permalink to this heading"></a></h3>
829+
<ul class="simple">
829830
<li><p>Added <code class="docutils literal notranslate"><span class="pre">&#64;staticmethod</span></code> to many static mehtods.</p></li>
830831
</ul>
831832
</section>
@@ -835,7 +836,6 @@ <h3>Fixed<a class="headerlink" href="#fixed" title="Permalink to this heading">
835836
<li><p>Typos and formatting</p></li>
836837
<li><p>Shadow of a Python built-in in <code class="docutils literal notranslate"><span class="pre">manager.get_human_bytesize()</span></code>: <code class="docutils literal notranslate"><span class="pre">bytes</span></code> to <code class="docutils literal notranslate"><span class="pre">amount_bytes</span></code></p></li>
837838
<li><p><code class="docutils literal notranslate"><span class="pre">manager.get_new_uuid_id()</span></code> returned not str()</p></li>
838-
<li><p>Removed 3 unused parameter of <code class="docutils literal notranslate"><span class="pre">manager.get_listen_key_from_restclient()</span></code>, now it is only accepting <code class="docutils literal notranslate"><span class="pre">stream_id</span></code>.</p></li>
839839
</ul>
840840
</section>
841841
</section>
@@ -3643,7 +3643,7 @@ <h3>Navigation</h3>
36433643
<div class="footer">
36443644
&copy; <a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/LICENSE">Copyright</a> 2019-2023, LUCIT Systems and Development and Oliver Zehentleitner.
36453645
See <a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/LICENSE">License</a> for more information.<br />
3646-
Last updated on Oct 07 2023 at 04:26 (CET).
3646+
Last updated on Oct 07 2023 at 04:45 (CET).
36473647
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
36483648
<br />
36493649
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 6.1.3.

docs/README.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -964,7 +964,7 @@ <h3>Navigation</h3>
964964
<div class="footer">
965965
&copy; <a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/LICENSE">Copyright</a> 2019-2023, LUCIT Systems and Development and Oliver Zehentleitner.
966966
See <a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/LICENSE">License</a> for more information.<br />
967-
Last updated on Oct 07 2023 at 04:26 (CET).
967+
Last updated on Oct 07 2023 at 04:45 (CET).
968968
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
969969
<br />
970970
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 6.1.3.

docs/_sources/CHANGELOG.md.txt

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,23 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
1313

1414
## 2.0.0
1515
### Added
16+
- Support for Python 3.11 and 3.12
1617
- Integration of the `lucit-licensing-python` library for verifying the UNICORN Binance Suite license. A license can be
1718
purchased in the LUCIT Online Shop: https://shop.lucit.services/software/unicorn-binance-suite
18-
### Changed
19-
- License change from MIT to LSOSL - LUCIT Synergetic Open Source License:
19+
- License change from MIT to LSOSL - LUCIT Synergetic Open Source License:
2020
https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/LICENSE
21-
- Conversion to a C++ compiled Cython package with precompiled as well as PyPy and source code wheels.
22-
- Setup of a "Trusted Publisher" deployment chain. The source code is transparently packaged into wheels directly from
23-
the GitHub repository by a GitHub action for all possible platforms and published directly as a new release on GitHub
24-
and PyPi. A second process from Conda-Forge then uploads it to Anaconda. Thus, the entire deployment process is
21+
- Conversion to a C++ compiled Cython package with precompiled as well as PyPy and source code wheels.
22+
- Setup of a "Trusted Publisher" deployment chain. The source code is transparently packaged into wheels directly from
23+
the GitHub repository by a GitHub action for all possible platforms and published directly as a new release on GitHub
24+
and PyPi. A second process from Conda-Forge then uploads it to Anaconda. Thus, the entire deployment process is
2525
transparent and the user can be sure that the compilation of a version fully corresponds to the source code.
26+
### Changed
2627
- Added `@staticmethod` to many static mehtods.
2728
### Fixed
2829
- Typos and formatting
2930
- Shadow of a Python built-in in `manager.get_human_bytesize()`: `bytes` to `amount_bytes`
3031
- `manager.get_new_uuid_id()` returned not str()
31-
- Removed 3 unused parameter of `manager.get_listen_key_from_restclient()`, now it is only accepting `stream_id`.
32+
3233

3334
## 1.46.2
3435
### Fixed

docs/copyright.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ <h3>Navigation</h3>
379379
<div class="footer">
380380
&copy; <a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/LICENSE">Copyright</a> 2019-2023, LUCIT Systems and Development and Oliver Zehentleitner.
381381
See <a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/LICENSE">License</a> for more information.<br />
382-
Last updated on Oct 07 2023 at 04:26 (CET).
382+
Last updated on Oct 07 2023 at 04:45 (CET).
383383
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
384384
<br />
385385
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 6.1.3.

docs/genindex.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ <h3>Navigation</h3>
334334
<div class="footer">
335335
&copy; <a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/LICENSE">Copyright</a> 2019-2023, LUCIT Systems and Development and Oliver Zehentleitner.
336336
See <a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/LICENSE">License</a> for more information.<br />
337-
Last updated on Oct 07 2023 at 04:26 (CET).
337+
Last updated on Oct 07 2023 at 04:46 (CET).
338338
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
339339
<br />
340340
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 6.1.3.

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -995,7 +995,7 @@ <h3>Navigation</h3>
995995
<div class="footer">
996996
&copy; <a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/LICENSE">Copyright</a> 2019-2023, LUCIT Systems and Development and Oliver Zehentleitner.
997997
See <a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/LICENSE">License</a> for more information.<br />
998-
Last updated on Oct 07 2023 at 04:26 (CET).
998+
Last updated on Oct 07 2023 at 04:46 (CET).
999999
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
10001000
<br />
10011001
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 6.1.3.

docs/modules.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ <h3>Navigation</h3>
326326
<div class="footer">
327327
&copy; <a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/LICENSE">Copyright</a> 2019-2023, LUCIT Systems and Development and Oliver Zehentleitner.
328328
See <a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/LICENSE">License</a> for more information.<br />
329-
Last updated on Oct 07 2023 at 04:26 (CET).
329+
Last updated on Oct 07 2023 at 04:46 (CET).
330330
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
331331
<br />
332332
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 6.1.3.

docs/py-modindex.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ <h3>Navigation</h3>
276276
<div class="footer">
277277
&copy; <a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/LICENSE">Copyright</a> 2019-2023, LUCIT Systems and Development and Oliver Zehentleitner.
278278
See <a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/LICENSE">License</a> for more information.<br />
279-
Last updated on Oct 07 2023 at 04:26 (CET).
279+
Last updated on Oct 07 2023 at 04:46 (CET).
280280
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
281281
<br />
282282
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 6.1.3.

docs/search.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ <h3>Navigation</h3>
226226
<div class="footer">
227227
&copy; <a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/LICENSE">Copyright</a> 2019-2023, LUCIT Systems and Development and Oliver Zehentleitner.
228228
See <a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/LICENSE">License</a> for more information.<br />
229-
Last updated on Oct 07 2023 at 04:26 (CET).
229+
Last updated on Oct 07 2023 at 04:46 (CET).
230230
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
231231
<br />
232232
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 6.1.3.

docs/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/unicorn_binance_websocket_api.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ <h3>Navigation</h3>
430430
<div class="footer">
431431
&copy; <a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/LICENSE">Copyright</a> 2019-2023, LUCIT Systems and Development and Oliver Zehentleitner.
432432
See <a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/LICENSE">License</a> for more information.<br />
433-
Last updated on Oct 07 2023 at 04:26 (CET).
433+
Last updated on Oct 07 2023 at 04:46 (CET).
434434
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
435435
<br />
436436
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 6.1.3.

0 commit comments

Comments
 (0)