Skip to content

Commit a618166

Browse files
authored
[fixinventory][chore] Bump 4.0.0 (#1973)
1 parent 93bfd68 commit a618166

File tree

25 files changed

+43
-43
lines changed

25 files changed

+43
-43
lines changed

fixcore/fixcore/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "4.0.0a4"
1+
__version__ = "4.0.0"
22

33

44
def version() -> str:

fixcore/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "fixinventorycore"
3-
version = "4.0.0a4"
3+
version = "4.0.0"
44
authors = [{name="Some Engineering Inc."}]
55
description = "Keeps all the things."
66
license = { text="AGPLv3" }

fixlib/fixlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "4.0.0a4"
1+
__version__ = "4.0.0"

fixlib/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "fixinventorylib"
3-
version = "4.0.0a4"
3+
version = "4.0.0"
44
authors = [{ name = "Some Engineering Inc." }]
55
description = "Fix Inventory common library."
66
license = { text = "AGPLv3" }

fixmetrics/fixmetrics/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "4.0.0a4"
1+
__version__ = "4.0.0"

fixmetrics/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "fixinventorymetrics"
3-
version = "4.0.0a4"
3+
version = "4.0.0"
44
authors = [{name="Some Engineering Inc."}]
55
description = "Exports Fix Inventory metrics in Prometheus format."
66
license = { text="AGPLv3" }
@@ -27,7 +27,7 @@ classifiers = [
2727
readme = {file="README.md", content-type="text/markdown"}
2828

2929
dependencies = [
30-
"fixinventorylib==4.0.0a4"
30+
"fixinventorylib==4.0.0"
3131
]
3232

3333
[pyproject.optional-dependencies]

fixshell/fixshell/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "4.0.0a4"
1+
__version__ = "4.0.0"

fixshell/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "fixinventoryshell"
3-
version = "4.0.0a4"
3+
version = "4.0.0"
44
authors = [{name="Some Engineering Inc."}]
55
description = "Commandline interpreter to interact with Fix Inventory."
66
license = { text="AGPLv3" }
@@ -28,7 +28,7 @@ readme = {file="README.md", content-type="text/markdown"}
2828
keywords = ["cloud security"]
2929

3030
dependencies = [
31-
"fixinventorylib==4.0.0a4",
31+
"fixinventorylib==4.0.0",
3232
"prompt-toolkit",
3333
"rich",
3434
"fixinventoryclient",

fixworker/fixworker/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "4.0.0a4"
1+
__version__ = "4.0.0"

fixworker/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "fixinventoryworker"
3-
version = "4.0.0a4"
3+
version = "4.0.0"
44
authors = [{ name = "Some Engineering Inc." }]
55
description = "Runs collector plugins and sends the result to fixcore."
66
license = { text="AGPLv3" }
@@ -9,7 +9,7 @@ classifiers = ["Programming Language :: Python :: 3"]
99
readme = { file = "README.md", content-type = "text/markdown" }
1010

1111
dependencies = [
12-
"fixinventorylib==4.0.0a4",
12+
"fixinventorylib==4.0.0",
1313
"tenacity",
1414
"CherryPy",
1515
]

0 commit comments

Comments
 (0)