Skip to content

Commit

Permalink
Prepare release 0.14
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 19, 2024
1 parent 1c503d5 commit 299236d
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.13
VERSION = 0.14
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.13"
version = "0.14"
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.13
version = 0.14
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.13"
VERSION = "0.14"

# 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 @@ -39,7 +39,7 @@
FQDN = socket.gethostname()

# version is updated by Makefile
VERSION = "0.13"
VERSION = "0.14"

# 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.13"
VERSION = "0.14"

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 @@ -17,7 +17,7 @@
import subprocess

# version is updated by Makefile
VERSION = "0.13"
VERSION = "0.14"

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

0 comments on commit 299236d

Please sign in to comment.