Skip to content

Commit 350cfac

Browse files
authored
chore: merge develop into main (#402)
release 5.4
2 parents 16def61 + 2763b94 commit 350cfac

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/workflows/build-test-release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ jobs:
7676
- "3.9"
7777
- "3.10"
7878
- "3.11"
79+
- "3.12"
80+
- "3.13"
7981
steps:
8082
- uses: actions/checkout@v4
8183
- uses: actions/setup-python@v5

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
[tool.poetry]
1818
name = "solnlib"
19-
version = "5.3.0"
19+
version = "5.4.0-beta.1"
2020
description = "The Splunk Software Development Kit for Splunk Solutions"
2121
authors = ["Splunk <[email protected]>"]
2222
license = "Apache-2.0"

solnlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@
5656
"utils",
5757
]
5858

59-
__version__ = "5.3.0"
59+
__version__ = "5.4.0-beta.1"

solnlib/splunkenv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ def get_conf_stanzas(conf_name: str) -> dict:
309309

310310
parser = ConfigParser(**{"strict": False})
311311
parser.optionxform = str
312-
parser.readfp(StringIO(out))
312+
parser.read_file(StringIO(out))
313313

314314
out = {}
315315
for section in parser.sections():

0 commit comments

Comments
 (0)