Skip to content

Commit

Permalink
bump: version 0.2.0 → 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 26, 2023
1 parent bb5b462 commit 41267e6
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 0.3.0 (2023-12-26)

### Feat

- implement basic vvg generation from `ts2vg`
- **nvg**: add divide-and-conquer (dc) version

### Fix

- **nvg**: parallelize with `numba`
- **dc**: remove `divide-and-conquer` version

### Refactor

- export input ensurance to own function
- export visibility check to own function

## 0.2.0 (2023-12-24)

### Feat
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 = "vector-vis-graph"
version = "0.2.0"
version = "0.3.0"
description = "Vector visibility graph generation."
authors = ["Tuna Alikaşifoğlu <tunakasif@gmail.com>"]

Expand Down Expand Up @@ -58,7 +58,7 @@ disallow_untyped_defs = true
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version = "0.2.0"
version = "0.3.0"
version_files = [
"pyproject.toml:^version",
"vector_vis_graph/__init__.py:__version__",
Expand Down
2 changes: 1 addition & 1 deletion vector_vis_graph/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.0"
__version__ = "0.3.0"

0 comments on commit 41267e6

Please sign in to comment.