Skip to content

Commit 1cb4165

Browse files
actions-usergithub-actions
authored andcommitted
0.4.0
Automatically generated by python-semantic-release
1 parent 4f70032 commit 1cb4165

3 files changed

Lines changed: 13 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
<!--next-version-placeholder-->
44

5+
## v0.4.0 (2023-01-11)
6+
### Feature
7+
* 🎉 feat: add typing stubs and update tests ([`60a7324`](https://github.com/darvid/python-hyperscan/commit/60a7324b489a7dac27095311bfb34a9b07e480c3))
8+
9+
### Fix
10+
* 🐛 fix: fix memory leak in loadb (#46) and minor doc tweaks ([`71b6462`](https://github.com/darvid/python-hyperscan/commit/71b64627e940c1e34ad8dde18f7b5800c113c25a))
11+
12+
### Other
13+
* 🛸 ci: update release pipeline ([`4f70032`](https://github.com/darvid/python-hyperscan/commit/4f7003273267f7dff0877ad28157a63c34e17960))
14+
515
## v0.3.3 (2022-12-14)
616

717
### Bugfix

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ known-first-party = ["hyperscan"]
2929

3030
[tool.commitizen]
3131
name = "cz_commitizen_emoji"
32-
version = "0.3.3"
32+
version = "0.4.0"
3333
version_files = [
3434
"pyproject.toml:version",
3535
"src/hyperscan/__init__.py:__version__",
@@ -38,7 +38,7 @@ version_files = [
3838
[tool.poetry]
3939
build = "build.py"
4040
name = "hyperscan"
41-
version = "0.3.3"
41+
version = "0.4.0"
4242
description = "Python bindings for Hyperscan."
4343
authors = ["David Gidwani <david.gidwani@gmail.com>"]
4444
license = "MIT"

src/hyperscan/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from hyperscan._hyperscan import * # noqa: F401, F403
44

5-
__version__ = "0.3.3"
5+
__version__ = "0.4.0"
66

77

88
class ExpressionExt(typing.NamedTuple):

0 commit comments

Comments
 (0)