Skip to content

Commit 9975247

Browse files
author
semantic-release
committed
chore(release): 0.3.0
Automatically generated by semantic-release
1 parent 922f9d6 commit 9975247

File tree

3 files changed

+31
-8
lines changed

3 files changed

+31
-8
lines changed

CHANGELOG.md

+29-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,33 @@
11
# CHANGELOG
22

3+
## v0.3.0 (2024-07-02)
34

5+
### Feature
6+
7+
* feat: typing functions and adding some docstring (#26) ([`4fb1460`](https://github.com/artefactory-fr/bytetrack/commit/4fb1460f7e58363749ac9103483e47ad7ad3527c))
8+
9+
* feat: cleaning the code removing dead part (#25) ([`4d8a20d`](https://github.com/artefactory-fr/bytetrack/commit/4d8a20d35e7d1a9948e0a948bd8a3db7ff08a400))
10+
11+
* feat: adding integration test (#23) ([`95372b9`](https://github.com/artefactory-fr/bytetrack/commit/95372b965ffffd0c0652800ee79a3be50c5af470))
12+
13+
### Fix
14+
15+
* fix: branch name change on CI file (#24) ([`c781a0c`](https://github.com/artefactory-fr/bytetrack/commit/c781a0c33a8dec9c82bd6b047e44229870c007eb))
16+
17+
* fix: adding notebook example of bytetrack with car detection and tracking (#22) ([`0f2f63b`](https://github.com/artefactory-fr/bytetrack/commit/0f2f63b20c765c41d7b781676b32e9c04927e2ec))
18+
19+
* fix: nm/readme (#20)
20+
21+
Co-authored-by: Nicolas <nicolas.mathieu@artefact.com>
22+
Co-authored-by: Nicolas Mathieu <81897925+nmathieufact@users.noreply.github.com> ([`7ec1476`](https://github.com/artefactory-fr/bytetrack/commit/7ec1476523160a47a12f12571b890762f2fbdbed))
23+
24+
### Unknown
25+
26+
* fea: release 0.3.0 (#28) ([`922f9d6`](https://github.com/artefactory-fr/bytetrack/commit/922f9d60e4840429cf92ac679c3cf75eb828fd27))
27+
28+
* doc: change doc before opensource (#27) ([`54d92ad`](https://github.com/artefactory-fr/bytetrack/commit/54d92ad9e26c34c223a229e103e05166c783636a))
29+
30+
* Sync main / dev (#19) ([`48e5dca`](https://github.com/artefactory-fr/bytetrack/commit/48e5dcaad578de0048945f0dc2744ae7c119552b))
431

532
## v0.2.0 (2023-12-22)
633

@@ -10,15 +37,14 @@
1037

1138
* feat: allow python 3.11 (#16)
1239

13-
Co-authored-by: TomDarmon <36815861+TomDarmon@users.noreply.github.com>
40+
Co-authored-by: TomDarmon <36815861+TomDarmon@users.noreply.github.com>
1441
Co-authored-by: github-actions <github-actions@github.com> ([`c9442e3`](https://github.com/artefactory-fr/bytetrack/commit/c9442e30811b5479520ad8695706d0da8ce09397))
1542

1643
* feat: allow python 3.11 (#14)
1744

18-
Co-authored-by: TomDarmon <36815861+TomDarmon@users.noreply.github.com>
45+
Co-authored-by: TomDarmon <36815861+TomDarmon@users.noreply.github.com>
1946
Co-authored-by: github-actions <github-actions@github.com> ([`e8c77a0`](https://github.com/artefactory-fr/bytetrack/commit/e8c77a04138214022a3823637869f58851a5f8ef))
2047

21-
2248
## v0.1.0 (2023-12-19)
2349

2450
### Feature
@@ -35,7 +61,6 @@ Co-authored-by: github-actions <github-actions@github.com> ([`e8c77a0`](ht
3561

3662
* Tp/add reset (#10) ([`074bb18`](https://github.com/artefactory-fr/bytetrack/commit/074bb18424f7670b0d26d945fa1fefc97faed041))
3763

38-
3964
## v0.0.3 (2023-11-24)
4065

4166
### Fix
@@ -48,7 +73,6 @@ Co-authored-by: github-actions <github-actions@github.com> ([`e8c77a0`](ht
4873

4974
* fix frame_id in update instead of _ ([`aafc3b7`](https://github.com/artefactory-fr/bytetrack/commit/aafc3b7d7be40534a6e88628302b9478991f533c))
5075

51-
5276
## v0.0.2 (2023-11-13)
5377

5478
### Fix
@@ -61,7 +85,6 @@ Co-authored-by: TomDarmon <tom.darmon@artefact.com> ([`553d5c1`](https://g
6185

6286
* Fix: cython release (#7) ([`d145ef6`](https://github.com/artefactory-fr/bytetrack/commit/d145ef6511c63b9b6fc6e0c6073249320e0d5861))
6387

64-
6588
## v0.0.1 (2023-11-13)
6689

6790
### Fix

bytetracker/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from bytetracker.byte_tracker import BYTETracker # noqa: F401
22

3-
__version__ = "0.2.0"
3+
__version__ = "0.3.0"

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "bytetracker"
33
authors = ["TomDarmon <tom.darmon@artefact.com>"]
44
description = "Maintained fork of bytetrack-pip"
5-
version = "0.2.0"
5+
version = "0.3.0"
66
readme = "README.md"
77

88

0 commit comments

Comments
 (0)