Skip to content

Commit

Permalink
Release 0.16
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Heimes <cheimes@redhat.com>
  • Loading branch information
tiran committed Mar 27, 2024
1 parent b2fa488 commit 4719db5
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = 0.15
VERSION = 0.16
RPM_WITH = client mockapi stageconsole
RPM_WITHOHT =

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "ipahcc"
version = "0.15"
version = "0.16"
description = "IPA enrollment agent for Red Hat Hybrid Cloud Console"
readme = "README.md"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# setup.cfg for backwards compatibility with setuptools on Python 3.6
[metadata]
name = ipahcc
version = 0.15
version = 0.16
description = IPA enrollment agent for Red Hat Hybrid Cloud Console
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down
2 changes: 1 addition & 1 deletion src/ipahcc/hccplatform.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
logger = logging.getLogger(__name__)

# version is updated by Makefile
VERSION = "0.15"
VERSION = "0.16"

# common HTTP request headers
HTTP_HEADERS = {
Expand Down
2 changes: 1 addition & 1 deletion src/ipahcc_auto_enrollment.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def detect_resolve1_resolv_conf() -> bool:
FQDN = socket.gethostname()

# version is updated by Makefile
VERSION = "0.15"
VERSION = "0.16"

# copied from ipahcc.hccplatform
DEVELOPMENT_MODE = True
Expand Down
2 changes: 1 addition & 1 deletion src/ipahcc_client_prepare.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from ipapython.version import VENDOR_VERSION as IPA_VERSION

# version is updated by Makefile
VERSION = "0.15"
VERSION = "0.16"

HCCCONF_URI = "_hccconf.podengo-project.internal."
RHSM_CERT = "/etc/pki/consumer/cert.pem"
Expand Down
2 changes: 1 addition & 1 deletion src/ipahcc_stage_console.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from urllib.parse import urlparse

# version is updated by Makefile
VERSION = "0.15"
VERSION = "0.16"

RHSM_CONF_FILE = pathlib.Path("/etc/rhsm/rhsm.conf")
RHSM_SERVER_HOSTNAME = "subscription.rhsm.{suffix}"
Expand Down

0 comments on commit 4719db5

Please sign in to comment.