Skip to content

Commit

Permalink
bump: version 0.4.2 → 0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
15r10nk committed Nov 12, 2023
1 parent de0c0bd commit 00fcf0e
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 1 deletion.
57 changes: 57 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
## v0.4.3 (2023-11-12)

### Fix

- remove upper bound from dependencies in pyproject.toml

## v0.4.2 (2023-10-07)

### Fix

- filter syntax warnings

## v0.4.1 (2023-10-01)

### Fix

- fix nonlocal/global handling

## v0.4.0 (2023-10-01)

### Feat

- 3.12 support

### Fix

- **3.7**: continue is not allowed in finally clause

### Refactor

- remove compile()

## v0.3.0 (2023-09-05)

## v0.2.0 (2023-08-05)

### Feat

- 3.7 support
- typing
- 3.8 support
- 3.9 support
- 3.10 support

### Fix

- typing & updated pre-commit checks

## v0.1.0 (2023-05-11)

### Feat

- added cli interface

### Fix

- changed propabilities to generate more expressions
15 changes: 14 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,27 @@
[tool.poetry]
name = "pysource-codegen"
version = "0.4.2"
version = "0.4.3"
description = ""
authors = ["Your Name <[email protected]>"]
readme = "README.md"
packages = [{include = "pysource_codegen"}]

[tool.commitizen]
changelog_incremental = true
major_version_zero = true
tag_format = "v$major.$minor.$patch$prerelease"
update_changelog_on_bump = true
version_files = [
"pysource_codegen/__init__.py:version"
]
version_provider = "poetry"

[tool.poetry.scripts]
pysource-codegen = "pysource_codegen.__main__:run"




[tool.poetry.dependencies]
python = ">=3.7"
astunparse = { version = ">=1.6.3", python ="<3.9"}
Expand Down

0 comments on commit 00fcf0e

Please sign in to comment.