Skip to content

Commit

Permalink
bump version and changelog #174
Browse files Browse the repository at this point in the history
  • Loading branch information
hcwinsemius committed Sep 20, 2024
1 parent 46226c5 commit 425e2fa
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 8 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## [0.6.0] - 2024-09-20
### Added
A logo with modifications in trademark guidelines in TRADEMARK.md and README.md.
Logo is also shown in the online documentation on https://localdevices.github.io/pyorc
### Changed
`Frames.project` with `method="numpy"` is improved so that it also works well in heavily undersampled areas.
`Video` instances defaulting with `lazy=False`. This in most cases increases the speed of video treatment significantly.
For large videos with large memory requirements, videos can be opened with `lazy=True`.
### Deprecated
### Removed
### Fixed
The legacy `setup.py` has been replaced by a `pyproject.toml` using flit installer.
### Security


## [0.5.6] - 2024-06-28
### Added
### Changed
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def remove_dir_content(path: str) -> None:
# -- Project information -----------------------------------------------------

project = 'pyorc'
copyright = '2023, Rainbow Sensing'
copyright = '2024, Rainbow Sensing'
author = 'Hessel Winsemius'

# The full version, including alpha/beta/rc tags
Expand Down
8 changes: 1 addition & 7 deletions pyorc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
"""pyorc: free and open-source image-based surface velocity and discharge."""

__version__ = "0.5.6"
# from .api.cameraconfig import CameraConfig, load_camera_config, get_camera_config
# from .api.video import Video
# from .api.frames import Frames
# from .api.velocimetry import Velocimetry
# from .api.transect import Transect
__version__ = "0.6.0"

from .api import *
from .project import *
# from . import api, service, cli

__all__ = [
"CameraConfig",
Expand Down

0 comments on commit 425e2fa

Please sign in to comment.