Skip to content

Commit

Permalink
bump: version 1.0.0 → 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 7, 2024
1 parent ab0379c commit d23c3cd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 1.0.1 (2024-10-07)

### Fix

- **typing_utils**: fix typevar and typing alias coercion to type (used in artschema type param inference)
- **kedro**: fix registering extra scopes as config resolvers, fix artschema dataset config parsing in pydantic v2

## 1.0.0 (2024-10-06)

### Refactor
Expand Down
2 changes: 1 addition & 1 deletion docs/api/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

project = "MLOpus"
author = "Lariel Fernandes"
release = "1.0.0"
release = "1.0.1"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[project]
name = "mlOpus"
version = "1.0.0"
version = "1.0.1"
readme = "README.md"
license = { text = "Apache-2.0" }
description = "MLOps tools for research and development."
Expand Down Expand Up @@ -69,7 +69,7 @@ dev-dependencies = [
# === Commitizen ==================================================================================

[tool.commitizen]
version = "1.0.0"
version = "1.0.1"
tag_format = "$version"
version_scheme = "semver"
version_files = [
Expand Down
2 changes: 1 addition & 1 deletion src/mlopus/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from mlopus import mlflow, artschema, lineage

VERSION = "1.0.0"
VERSION = "1.0.1"

__all__ = [
"mlflow",
Expand Down

0 comments on commit d23c3cd

Please sign in to comment.