Skip to content
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
4 changes: 0 additions & 4 deletions .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,6 @@ jobs:
git_committer_name: "github-actions"
git_committer_email: "[email protected]"

- name: Debug | Show current directory
run:
ls -la

- name: Publish | Upload package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
if: steps.release.outputs.released == 'true'
Expand Down
10 changes: 9 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ Build
rm -r dist/ docs/

Tag
----
---

Each new release gets a new tag with important information about the changes added to the new release:

Expand All @@ -238,6 +238,14 @@ Each new release gets a new tag with important information about the changes add

Add required information in the corresponding `release in the Github project <https://github.com/fossology/fossology-python/releases>`_.

Publish
-------

Publish the newest release to PyPi (visit https://pypi.org/manage/account/#api-tokens to get the token):

.. code:: shell

poetry publish --build --username __token__ --password $PYPI_TOKEN

Test
----
Expand Down
2 changes: 1 addition & 1 deletion docs-source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
copyright = "2021, Siemens AG"

# The full version, including major/minor/patch tags
release = "3.2.1"
release = "3.3.1"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "fossology"
version = "3.2.1"
version = "3.3.1"
description = "A library to automate Fossology from Python scripts"
authors = ["Marion Deveaud <[email protected]>"]
license = "MIT License"
Expand Down