Skip to content

Commit

Permalink
ci: semantic versioning configuration updates
Browse files Browse the repository at this point in the history
  • Loading branch information
oyurekten committed Jun 20, 2024
1 parent 3529cd7 commit 085f5f5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 24 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: Python application
name: Build application

on:
push:
Expand All @@ -24,7 +21,7 @@ jobs:
fetch-depth: 0

- name: Set up Python 3.10
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Setup Poetry
Expand Down
15 changes: 0 additions & 15 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +0,0 @@
# CHANGELOG

## v2.0.0 (2024-06-20)

### Ci

* ci: github actions to run unit tests and semantic versioning updates ([`1c9f5fb`](https://github.com/EBI-Metabolights/metabolights-utils/commit/1c9f5fb66e3c9e9ceed92ff1c13c43f06abbed27))

### Fix

* fix: python3.8 compatibility, new unit tests and lint fixes. ci: sematic release versioning. ([`3c6bb6f`](https://github.com/EBI-Metabolights/metabolights-utils/commit/3c6bb6f23698551fcb19527ce4d5578c85414f7e))

### Unknown

* feature: Initial commit ([`25c8e5b`](https://github.com/EBI-Metabolights/metabolights-utils/commit/25c8e5b98a3291b137fdbb88113c30263e84ab6c))
2 changes: 1 addition & 1 deletion metabolights_utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@
)
from metabolights_utils.utils.search_utils import MetabolightsSearchUtils

__VERSION__ = "0.9.56"
__VERSION__ = "0.0.1"

__all__ = [
"Assay",
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "metabolights-utils"
version = "0.9.56"
version = "0.0.1"
description = "MetaboLights command line interface (CLI), common data models, utility methods and classes."
authors = ["MetaboLights Team <metabolights-dev@ebi.ac.uk>"]
readme = "README.md"
Expand Down Expand Up @@ -115,8 +115,7 @@ env = "GIT_COMMIT_AUTHOR"
default = "semantic-release <semantic-release>"

[tool.semantic_release.commit_parser_options]
allowed_tags = ["new-version","build", "chore", "ci", "docs", "feat", "fix", "perf", "style", "refactor", "test"]
major_tags = ["new-version"]
allowed_tags = ["build", "chore", "ci", "docs", "feat", "fix", "perf", "style", "refactor", "test"]
minor_tags = ["feat"]
patch_tags = ["fix", "perf"]
default_bump_level = 0
Expand Down

0 comments on commit 085f5f5

Please sign in to comment.