Skip to content

Commit

Permalink
Bump version: {current_version} → {new_version}
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 15, 2024
1 parent 8f90f10 commit 50bcdee
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## v1.10.0 (2024-02-15)

### Feat

- **layers.py**: added new layer type `LayerNorm`
- **expression.py**: added new parameter type Gamma
- **results.py**: add argument offset to show_training_plot
- **run**: moved train and compute to pycmtensor.run for cleaniness

### Fix

- **TasteNet.py**: changed instance check type from .DenseLayer to .Layer
- **run.py**: add limit for verbosity

## v1.9.2 (2024-02-08)

### Fix
Expand Down
2 changes: 1 addition & 1 deletion pycmtensor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"""

__author__ = """Melvin Wong"""
__version__ = "1.9.2"
__version__ = "1.10.0"

import aesara
from watermark import watermark
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 = "pycmtensor"
version = "1.9.2"
version = "1.10.0"
description = "A robust and efficient Python package leveraging tensor computations for advanced discrete choice modelling."
authors = ["Melvin Wong"]
license = "MIT"
Expand Down Expand Up @@ -77,7 +77,7 @@ exclude = '''

[tool.commitizen]
name = "cz_conventional_commits"
version = "1.9.2"
version = "1.10.0"
tag_format = "v$version"
bump_message = "Bump version: {current_version} → {new_version}"
version_files = [
Expand Down

0 comments on commit 50bcdee

Please sign in to comment.