Skip to content

Commit

Permalink
Bump fiveg_nrf library version.
Browse files Browse the repository at this point in the history
Signed-off-by: gatici <gulsum.atici@canonical.com>
  • Loading branch information
gatici committed Feb 14, 2024
1 parent b62e262 commit 6a6d9b5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/charms/sdcore_nrf_k8s/v0/fiveg_nrf.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class DummyFiveGNRFRequirerCharm(CharmBase):
def __init__(self, *args):
super().__init__(*args)
self.nrf_requirer = NRFRequires(self, "fiveg-nrf")
self.nrf_requirer = NRFRequires(self, "fiveg_nrf")
self.framework.observe(self.nrf_requirer.on.nrf_available, self._on_nrf_available)
def _on_nrf_available(self, event: NRFAvailableEvent):
Expand Down Expand Up @@ -67,7 +67,7 @@ class DummyFiveGNRFProviderCharm(CharmBase):
def __init__(self, *args):
super().__init__(*args)
self.nrf_provider = NRFProvides(self, "fiveg-nrf")
self.nrf_provider = NRFProvides(self, "fiveg_nrf")
self.framework.observe(
self.on.fiveg_nrf_relation_joined, self._on_fiveg_nrf_relation_joined
)
Expand Down Expand Up @@ -110,7 +110,7 @@ def _on_nrf_url_changed(

# Increment this PATCH version before using `charmcraft publish-lib` or reset
# to 0 if you are raising the major API version
LIBPATCH = 1
LIBPATCH = 2

PYDEPS = ["pydantic", "pytest-interface-tester"]

Expand Down

0 comments on commit 6a6d9b5

Please sign in to comment.