Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
orgua committed Oct 1, 2024
1 parent 9176391 commit 70518a1
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.8.2
current_version = 0.8.3
commit = False
tag = False

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
project = "SHEPHERD"
project_copyright = "2019-2024, Networked Embedded Systems Lab, TU Dresden & TU Darmstadt"
author = "Kai Geissdoerfer, Ingmar Splitt"
release = "0.8.2"
release = "0.8.3"

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

Expand Down
2 changes: 1 addition & 1 deletion docs/dev/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ Use `bump2version` to update the version number across the repository:
```shell
pipenv shell
pre-commit run --all-files
bump2version --allow-dirty --new-version 0.8.2 patch
bump2version --allow-dirty --new-version 0.8.3 patch
# version-format: major.minor.patch
```

Expand Down
2 changes: 1 addition & 1 deletion software/debug_analyze_time_sync/sync_analysis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from .logic_trace import LogicTrace
from .logic_traces import LogicTraces

__version__ = "0.8.2"
__version__ = "0.8.3"

__all__ = [
"LogicTrace",
Expand Down
2 changes: 1 addition & 1 deletion software/firmware/pru0-module-py/shepherd_pru/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from .pru_source_model import PruSourceModel
from .pru_source_simulation import simulate_source

__version__ = "0.8.2"
__version__ = "0.8.3"

__all__ = [
"PruConverterModel",
Expand Down
2 changes: 1 addition & 1 deletion software/kernel-module/src/module_base.c
Original file line number Diff line number Diff line change
Expand Up @@ -165,5 +165,5 @@ module_platform_driver(shepherd_driver);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Kai Geissdoerfer");
MODULE_DESCRIPTION("Shepherd kernel module for time synchronization and data exchange to PRUs");
MODULE_VERSION("0.8.2");
MODULE_VERSION("0.8.3");
// MODULE_ALIAS("rpmsg:rpmsg-shprd"); // TODO: is this still needed?
2 changes: 1 addition & 1 deletion software/pps-gmtimer/src/pps-gmtimer.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Dan Drown");
MODULE_DESCRIPTION("PPS Client Driver using OMAP Timer hardware");
MODULE_VERSION("0.8.2");
MODULE_VERSION("0.8.3");

struct pps_gmtimer_platform_data
{
Expand Down
2 changes: 1 addition & 1 deletion software/python-package/shepherd_launcher/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

from typing_extensions import Self

__version__ = "0.8.2"
__version__ = "0.8.3"

# Top-Level Package-logger
log = logging.getLogger("ShpLauncher")
Expand Down
2 changes: 1 addition & 1 deletion software/python-package/shepherd_sheep/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
from .sysfs_interface import flatten_list
from .target_io import TargetIO

__version__ = "0.8.2"
__version__ = "0.8.3"

__all__ = [
"Writer",
Expand Down
2 changes: 1 addition & 1 deletion software/python-package/shepherd_watchdog/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from typing_extensions import Self

__version__ = "0.8.2"
__version__ = "0.8.3"

# Top-Level Package-logger
log = logging.getLogger("ShpWatchdog")
Expand Down
2 changes: 1 addition & 1 deletion software/shepherd-calibration/shepherd_cal/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from .profile_analyzer import analyze_directory
from .profiler import Profiler

__version__ = "0.8.2"
__version__ = "0.8.3"

__all__ = [
"Calibrator",
Expand Down
2 changes: 1 addition & 1 deletion software/shepherd-herd/shepherd_herd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from .logger import get_verbosity
from .logger import logger

__version__ = "0.8.2"
__version__ = "0.8.3"

__all__ = [
"Herd",
Expand Down

0 comments on commit 70518a1

Please sign in to comment.