Skip to content

Commit

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

# [0.8.0](https://github.com/osl-incubator/artbox/compare/0.7.0...0.8.0) (2024-07-15)


### Bug Fixes

* Update python pinning restriction (>=3.9,<4) ([#29](https://github.com/osl-incubator/artbox/issues/29)) ([765f1dd](https://github.com/osl-incubator/artbox/commit/765f1dd35569934f57eb7e9acfda59b2d5788be7))
* Update pytubefix to version 5 ([#26](https://github.com/osl-incubator/artbox/issues/26)) ([d7b2917](https://github.com/osl-incubator/artbox/commit/d7b291708d9455bbc22881669d868eb2fef79e17))


### Features

* Add functionality for extracting metadata and for plot a spectrogram ([#28](https://github.com/osl-incubator/artbox/issues/28)) ([5236e7d](https://github.com/osl-incubator/artbox/commit/5236e7d0d3d379a418d3cfdbb6ea85436959f0d6))

# [0.7.0](https://github.com/osl-incubator/artbox/compare/0.6.0...0.7.0) (2024-03-13)


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 = "artbox"
version = "0.7.0" # semantic-release
version = "0.8.0" # semantic-release
description = "ArtBox is a tool set for handling multimedia files."
readme = "docs/index.md"
authors = ["Ivan Ogasawara <ivan.ogasawara@gmail.com>"]
Expand Down
2 changes: 1 addition & 1 deletion src/artbox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def get_version():
try:
return importlib_metadata.version(__name__)
except importlib_metadata.PackageNotFoundError: # pragma: no cover
return "0.7.0" # semantic-release
return "0.8.0" # semantic-release


version = get_version()
Expand Down

0 comments on commit d6b823c

Please sign in to comment.