Skip to content

Commit

Permalink
Version 4.0.0a354
Browse files Browse the repository at this point in the history
  • Loading branch information
mminichino committed May 17, 2024
1 parent 5df1b5e commit 9e704f4
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 50 deletions.
4 changes: 3 additions & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 4.0.0a350
current_version = 4.0.0a354
commit = False
tag = False
message = Version {new_version}
Expand All @@ -26,3 +26,5 @@ values =
[bumpversion:file:README.md]

[bumpversion:file:VERSION]

[bumpversion:file:pyproject.toml]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
![](doc/couch-formation-1.png)
# Couch Formation 4.0.0a350
# Couch Formation 4.0.0a354
Toolset for running and managing Couchbase assets in the cloud.

## Disclaimer
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.0a350
4.0.0a354
2 changes: 1 addition & 1 deletion couchformation/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from pkg_resources import parse_version

_ROOT = os.path.abspath(os.path.dirname(__file__))
__version__ = "4.0.0a350"
__version__ = "4.0.0a354"
VERSION = parse_version(__version__)


Expand Down
92 changes: 46 additions & 46 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "couchformation"
description = "Couchbase Cloud Automation"
version = "4.0.0a350"
version = "4.0.0a354"
readme = "README.md"
authors = ["Michael Minichino <info@unix.us.com>"]
classifiers = [
Expand Down Expand Up @@ -31,52 +31,52 @@ cloudmgr = "couchformation.cli.cloudmgr:main"
dbdump = "couchformation.cli.dbdump:main"

[tool.poetry.dependencies]
python = "^3.8"
attrs = "^23.1.0"
boto3 = "^1.34.17"
botocore = "^1.34.17"
cryptography = "^42.0.7"
dnspython = "^2.1.0"
google-api-core = "^2.4.0"
google-api-python-client = "^2.34.0"
google-auth = "^2.3.3"
google-auth-httplib2 = "^0.1.0"
googleapis-common-protos = "^1.54.0"
google-cloud = "^0.34.0"
google-cloud-compute = "^1.6.1"
google-cloud-storage = "^2.10.0"
google-cloud-dns = "^0.35.0"
google-cloud-network-management = "^1.5.4"
Jinja2 = "^3.0.0"
passlib = "^1.7.4"
pycryptodome = "^3.20.0"
pytz = "^2021.3"
pyvmomi = "^8.0.0.1.1"
requests = "^2.31.0"
urllib3 = "^1.26.16"
azure-common = "^1.1.28"
azure-core = "^1.29.6"
azure-mgmt-resource = "^22.0.0"
azure-identity = "^1.12.0"
azure-mgmt-network = "^25.3.0"
azure-mgmt-compute = "^31.0.0"
azure-mgmt-core = "^1.4.0"
azure-mgmt-dns = "^8.1.0"
azure-mgmt-privatedns = "^1.1.0"
ply = "^3.11"
sqlite-utils = "^3.11"
docker = "^5.0.3"
paramiko = "^3.4.0"
overrides = "^7.4.0"
python = ">=3.8,<4"
attrs = ">=23.1.0"
boto3 = ">=1.34.17"
botocore = ">=1.34.17"
cryptography = ">=42.0.7"
dnspython = ">=2.1.0"
google-api-core = ">=2.4.0"
google-api-python-client = ">=2.34.0"
google-auth = ">=2.3.3"
google-auth-httplib2 = ">=0.1.0"
googleapis-common-protos = ">=1.54.0"
google-cloud = ">=0.34.0"
google-cloud-compute = ">=1.6.1"
google-cloud-storage = ">=2.10.0"
google-cloud-dns = ">=0.35.0"
google-cloud-network-management = ">=1.5.4"
Jinja2 = ">=3.0.0"
passlib = ">=1.7.4"
pycryptodome = ">=3.20.0"
pytz = ">=2021.3"
pyvmomi = ">=8.0.0.1.1"
requests = ">=2.31.0"
urllib3 = ">=1.26.16"
azure-common = ">=1.1.28"
azure-core = ">=1.29.6"
azure-mgmt-resource = ">=23.1.1"
azure-identity = ">=1.12.0"
azure-mgmt-network = ">=25.3.0"
azure-mgmt-compute = ">=31.0.0"
azure-mgmt-core = ">=1.4.0"
azure-mgmt-dns = ">=8.1.0"
azure-mgmt-privatedns = ">=1.1.0"
ply = ">=3.11"
sqlite-utils = ">=3.11"
docker = ">=6.1.3"
paramiko = ">=3.4.0"
overrides = ">=7.4.0"
PyYAML = { version = "!=6.0.0,!=5.4.0,!=5.4.1" }
rsa = "^4.9"
pywinrm = "^0.4.3"
aiohttp = "^3.9.3"
python-certifi-win32 = "^1.6.1"
certifi = "^2023.5.7"
pyhostprep = "^1.0.10"
psutil = "^5.9.5"
six = "^1.16.0"
rsa = ">=4.9"
pywinrm = ">=0.4.3"
aiohttp = ">=3.9.3"
python-certifi-win32 = ">=1.6.1"
certifi = ">=2024.2.2"
pyhostprep = ">=1.0.10"
psutil = ">=5.9.5"
six = ">=1.16.0"

[tool.poetry.group.test.dependencies]
pytest = "^7.4.0"
Expand Down

0 comments on commit 9e704f4

Please sign in to comment.