Skip to content

Commit

Permalink
Merge pull request #6 from perastov/fix-doc-refs
Browse files Browse the repository at this point in the history
Fix document about release process
  • Loading branch information
neexee authored Sep 26, 2023
2 parents eb7d468 + 04e3b18 commit e928c7c
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Release History
===============

1.0.1 (2023-09-26)
------------------

- Boost API client authentication
- Add license Apache License 2.0
- Fix documentation

1.0.0 (2023-08-07)
------------------

Expand Down
2 changes: 1 addition & 1 deletion cybsi/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.0.0"
__version__ = "1.0.1"
__title__ = "cybsi-cloud-sdk"
__description__ = "Cybsi Cloud development kit"
__license__ = "Apache License 2.0"
Expand Down
4 changes: 2 additions & 2 deletions docs/dev/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ An author of a merge request must to the following:
#. Bump version using :ref:`rules <release-process>`. Use ``make bump-version $NEW_VERSION``.
#. Ensure everything builds nicely (``make lint test build-docs``)

Stable versions are published to PyPi manually.
Stable versions are published to PyPI using GitHub release workflow or manually.

To do that, run this once:
To do manually, run this once:

.. code-block:: bash
Expand Down
2 changes: 1 addition & 1 deletion docs/user/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Source code

.. code-block:: console
$ git clone (TODO repo address)
$ git clone git@github.com:perastov/cybsi-cloud-sdk.git
Once you have a copy of the source, you can embed it in your own Python package, or install it into your site-packages easily:

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cybsi-cloud-sdk"
version = "1.0.0"
version = "1.0.1"
description = "Cybsi Cloud development kit"
authors = ["Cybsi Cloud developers"]
license = "Apache License 2.0"
Expand Down Expand Up @@ -40,7 +40,7 @@ extend_skip = ["__init__.py"]
[tool.tbump]

[tool.tbump.version]
current = "1.0.0"
current = "1.0.1"

regex = '''
^
Expand Down

0 comments on commit e928c7c

Please sign in to comment.