Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix document about release process #6

Merged
merged 2 commits into from
Sep 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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