Skip to content

Commit

Permalink
Merge pull request #74 from localdevices/release0_2_2
Browse files Browse the repository at this point in the history
Bumping to 0.2.2 for pytest, adding badges to README.md #43
  • Loading branch information
hcwinsemius authored Aug 1, 2022
2 parents b90035a + 604923c commit 7d445bd
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 3 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
## [0.2.2] - 2022-08-01
### Added
- pytest

### Changed
### Deprecated
### Removed
### Fixed
- small improvements and bug fixes

### Security

## [0.2.1] - 2022-06-22
### Added
- Documentation

### Changed
- docstrings (numpy format, and completed)

### Deprecated
### Removed
### Fixed
- small improvements and bug fixes

### Security

## [0.2.0] - 2022-05-18
### Added
- API for entire library
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
pyOpenRiverCam
==============

[![PyPI](https://badge.fury.io/py/pyopenrivercam.svg)](https://pypi.org/project/pyopenrivercam/)
[![codecov](https://codecov.io/gh/localdevices/pyorc/branch/main/graph/badge.svg?token=0740LBNK6J)](https://codecov.io/gh/localdevices/pyorc)
[![docs_latest](https://img.shields.io/badge/docs-latest-brightgreen.svg)](https://localdevices.github.io/pyorc/latest)
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/localdevices/pyorc.git/main?labpath=examples)
[![License](https://img.shields.io/github/license/localdevices/pyorc?style=flat)](https://github.com/localdevices/pyorc/blob/main/LICENSE)


**pyorc**, short for "pyOpenRiverCam" is a fully Open Source library for performing image-based river flow analysis. It is the underlying library for
computations on the fully open software stack OpenRiverCam. **pyorc** can only be successful if the underlying methods
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def remove_dir_content(path: str) -> None:
# The full version, including alpha/beta/rc tags
# TODO: uncomment this as soon as we have a version number on the package within pypi
# release = pkg_resources.get_distribution("ODMax").version
release = '0.2.1'
release = '0.2.2'

# -- General configuration ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion pyorc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.2.1"
__version__ = "0.2.2"
from .api.cameraconfig import CameraConfig, load_camera_config, get_camera_config
from .api.video import Video
from .api.frames import Frames
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
setup(
name="pyopenrivercam",
description="pyopenrivercam (pyorc) is a front and backend to control river camera observation locations",
version="0.2.1",
version="0.2.2",
long_description=readme + "\n\n",
long_description_content_type="text/markdown",
url="https://github.com/localdevices/pyorc",
Expand Down

0 comments on commit 7d445bd

Please sign in to comment.