Skip to content

Commit 49e5598

Browse files
authored
Merge pull request #203 from carlosmmatos/arrrg-python
Arrrg python
2 parents ca19acb + 4ceb373 commit 49e5598

File tree

7 files changed

+9
-7
lines changed

7 files changed

+9
-7
lines changed

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include config/*.ini
1+
include config/*

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ To install as a container:
169169
Falcon Integration Gateway (FIG) is available on the [Python Package Index](https://pypi.org/project/falcon-integration-gateway/).
170170

171171
> [!WARNING]
172-
> Falcon Integration Gateway (FIG) versions below 3.2.2 on PyPI are broken and will not install correctly. Please ensure you install version 3.2.2 or higher from PyPI.
172+
> Falcon Integration Gateway (FIG) versions below 3.2.3 on PyPI are broken and will not install correctly. Please ensure you install version 3.2.3 or higher from PyPI.
173173

174174
1. Install the package:
175175

docs/listings/gke/deployer/chart/falcon-integration-gateway/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ version: 0.2.0
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: 3.2.2
24+
appVersion: 3.2.3

docs/listings/gke/deployer/chart/falcon-integration-gateway/templates/application.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ spec:
2323
kind: Secret
2424
descriptor:
2525
type: falcon-integration-gateway
26-
version: '3.2.2'
26+
version: '3.2.3'
2727
description: |-
2828
Falcon Integration Gateway (FIG) forwards threat detection findings from CrowdStrike Falcon
2929
platform to the backend of your choice. This instance forwards detection findings to GCP

docs/listings/gke/deployer/schema.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ x-google-marketplace:
33

44
applicationApiVersion: v1beta1
55

6-
publishedVersion: "3.2.2"
6+
publishedVersion: "3.2.3"
77
publishedVersionMetadata:
88
releaseNote: >-
99
3.1

fig/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '3.2.2'
1+
__version__ = '3.2.3'

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515
long_description_content_type="text/markdown",
1616
url="https://github.com/crowdstrike/falcon-integration-gateway",
1717
packages=find_packages(),
18-
package_data={'': ['config/*.ini']},
18+
package_data={
19+
'fig': ['../config/*.ini'],
20+
},
1921
include_package_data=True,
2022
install_requires=[
2123
'boto3',

0 commit comments

Comments
 (0)