Skip to content

Commit

Permalink
chore(release): 0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed Sep 14, 2024
1 parent 2e48959 commit f90e58c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Release Notes
---

# [0.15.0](https://github.com/arxlang/astx/compare/0.14.0...0.15.0) (2024-09-14)


### Features

* Add Support for Float Datatypes (float16, float32, float64) ([#86](https://github.com/arxlang/astx/issues/86)) ([2e48959](https://github.com/arxlang/astx/commit/2e48959725535e9c7aed978199e57feff04ec0a0))

# [0.14.0](https://github.com/arxlang/astx/compare/0.13.2...0.14.0) (2024-09-09)


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 = "astx"
version = "0.14.0" # semantic-release
version = "0.15.0" # semantic-release
description = "ASTx is an agnostic expression structure for AST."
readme = "docs/index.md"
authors = ["Ivan Ogasawara <ivan.ogasawara@gmail.com>"]
Expand Down
2 changes: 1 addition & 1 deletion src/astx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def get_version() -> str:
try:
return importlib_metadata.version(__name__)
except importlib_metadata.PackageNotFoundError: # pragma: no cover
return "0.14.0" # semantic-release
return "0.15.0" # semantic-release


__all__ = [
Expand Down

0 comments on commit f90e58c

Please sign in to comment.