Skip to content

Commit

Permalink
fix:update version and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jjjermiah committed Dec 16, 2023
1 parent 1b6b8fc commit be7ce6f
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 15 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
# CHANGELOG


## Unreleased

## v0.3.1 (2023-12-16)
### Unknown

* update gha ([`1b6b8fc`](https://github.com/jjjermiah/NBIA-toolkit/commit/1b6b8fc4f2fdff40c18feb39d74ed5f60bd16d6a))



## v0.3.1 (2023-12-17)

### Chore

* chore(release): release 0.3.1 ([`8a3aef7`](https://github.com/jjjermiah/NBIA-toolkit/commit/8a3aef7ced936981c54e7cf108a2b0fed10e7f47))

### Fix

Expand Down
60 changes: 46 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "nbiatoolkit"
version = "0.1.2"
version = "0.3.1"
description = "A python package to query the National Biomedical Imaging Archive (NBIA) database."
authors = ["Jermiah Joseph"]
license = "MIT"
Expand All @@ -21,21 +21,53 @@ sphinx-autoapi = "^3.0.0"
sphinx-rtd-theme = "^1.3.0"
python-semantic-release = "^8.5.1"


[tool.semantic_release]
version_variable = [
"pyproject.toml:tool.poetry.version",
version_toml = [
"pyproject.toml:tool.poetry.version"
]

branch = "main"
upload_to_PyPI = false
upload_to_release = true
build_command = "echo 'Building...'"
commit_author = "github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>"

[tool.semantic_release.commit_parser_options]
allowed_tags = [
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"style",
"refactor",
"test"
]
branch = "main" # branch to make releases of
changelog_file = "CHANGELOG.md" # changelog file
build_command = "pip install poetry && poetry build" # build dists
commit_version_number = true # commit version number
commit_message = "chore(release): release {version}" # commit message
dist_path = "dist/" # where to put dists
upload_to_release = false # auto-create GitHub release
upload_to_pypi = false # don't auto-upload to PyPI
remove_dist = false # don't remove dists
patch_without_tag = true # patch release by default
minor_tags = ["feat"]
patch_tags = ["fix", "perf"]

[build-system]
requires = ["poetry-core>=1.0.0"]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

# [tool.semantic_release]
# version_toml = [
# "pyproject.toml:tool.poetry.version",
# ]
# branch = "main" # branch to make releases of
# changelog_file = "CHANGELOG.md" # changelog file
# build_command = "pip install poetry && poetry build" # build dists
# commit_version_number = true # commit version number
# commit_message = "chore(release): release {version}" # commit message
# dist_path = "dist/" # where to put dists
# upload_to_release = false # auto-create GitHub release
# upload_to_pypi = false # don't auto-upload to PyPI
# remove_dist = false # don't remove dists
# patch_without_tag = true # patch release by default

# [build-system]
# requires = ["poetry-core>=1.0.0"]
# build-backend = "poetry.core.masonry.api"

0 comments on commit be7ce6f

Please sign in to comment.