snapctl 0.46.0__tar.gz → 0.46.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of snapctl might be problematic. Click here for more details.

Files changed (26) hide show
  1. {snapctl-0.46.0 → snapctl-0.46.1}/PKG-INFO +1 -1
  2. {snapctl-0.46.0 → snapctl-0.46.1}/pyproject.toml +1 -1
  3. {snapctl-0.46.0 → snapctl-0.46.1}/snapctl/commands/byosnap.py +2 -4
  4. {snapctl-0.46.0 → snapctl-0.46.1}/snapctl/config/constants.py +1 -1
  5. {snapctl-0.46.0 → snapctl-0.46.1}/LICENSE +0 -0
  6. {snapctl-0.46.0 → snapctl-0.46.1}/README.md +0 -0
  7. {snapctl-0.46.0 → snapctl-0.46.1}/snapctl/__init__.py +0 -0
  8. {snapctl-0.46.0 → snapctl-0.46.1}/snapctl/__main__.py +0 -0
  9. {snapctl-0.46.0 → snapctl-0.46.1}/snapctl/commands/__init__.py +0 -0
  10. {snapctl-0.46.0 → snapctl-0.46.1}/snapctl/commands/byogs.py +0 -0
  11. {snapctl-0.46.0 → snapctl-0.46.1}/snapctl/commands/game.py +0 -0
  12. {snapctl-0.46.0 → snapctl-0.46.1}/snapctl/commands/generate.py +0 -0
  13. {snapctl-0.46.0 → snapctl-0.46.1}/snapctl/commands/release_notes.py +0 -0
  14. {snapctl-0.46.0 → snapctl-0.46.1}/snapctl/commands/snapend.py +0 -0
  15. {snapctl-0.46.0 → snapctl-0.46.1}/snapctl/config/__init__.py +0 -0
  16. {snapctl-0.46.0 → snapctl-0.46.1}/snapctl/config/endpoints.py +0 -0
  17. {snapctl-0.46.0 → snapctl-0.46.1}/snapctl/config/hashes.py +0 -0
  18. {snapctl-0.46.0 → snapctl-0.46.1}/snapctl/data/profiles/snapser-byosnap-profile.json +0 -0
  19. {snapctl-0.46.0 → snapctl-0.46.1}/snapctl/data/profiles/snapser-byosnap-profile.yaml +0 -0
  20. {snapctl-0.46.0 → snapctl-0.46.1}/snapctl/data/releases/beta-0.46.0.mdx +0 -0
  21. {snapctl-0.46.0 → snapctl-0.46.1}/snapctl/main.py +0 -0
  22. {snapctl-0.46.0 → snapctl-0.46.1}/snapctl/types/__init__.py +0 -0
  23. {snapctl-0.46.0 → snapctl-0.46.1}/snapctl/types/definitions.py +0 -0
  24. {snapctl-0.46.0 → snapctl-0.46.1}/snapctl/utils/__init__.py +0 -0
  25. {snapctl-0.46.0 → snapctl-0.46.1}/snapctl/utils/echo.py +0 -0
  26. {snapctl-0.46.0 → snapctl-0.46.1}/snapctl/utils/helper.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: snapctl
3
- Version: 0.46.0
3
+ Version: 0.46.1
4
4
  Summary: Snapser CLI Tool
5
5
  Author: Ajinkya Apte
6
6
  Author-email: aj@snapser.com
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "snapctl"
3
- version = "0.46.0"
3
+ version = "0.46.1"
4
4
  description = "Snapser CLI Tool"
5
5
  authors = ["Ajinkya Apte <aj@snapser.com>"]
6
6
  readme = "README.md"
@@ -445,16 +445,14 @@ class ByoSnap:
445
445
  snapctl_error(
446
446
  message='Invalid env_params value in BYOSnap profile. env_params key ' +
447
447
  'should not be empty. ' +
448
- f"Check the key entry at {
449
- profile}.env_params #{env_index}.",
448
+ f"Check the key entry at {profile}.env_params #{env_index}.",
450
449
  code=SNAPCTL_INPUT_ERROR
451
450
  )
452
451
  if env_param['value'] is None or env_param['value'].strip() == '':
453
452
  snapctl_error(
454
453
  message='Invalid env_params value in BYOSnap profile. env_params value ' +
455
454
  'should not be empty. ' +
456
- f"Check the value entry at {
457
- profile}.env_params #{env_index}.",
455
+ f"Check the value entry at {profile}.env_params #{env_index}.",
458
456
  code=SNAPCTL_INPUT_ERROR
459
457
  )
460
458
  return profile_data
@@ -3,7 +3,7 @@ Constants used by snapctl
3
3
  """
4
4
  COMPANY_NAME = 'Snapser'
5
5
  VERSION_PREFIX = 'beta-'
6
- VERSION = '0.46.0'
6
+ VERSION = '0.46.1'
7
7
  CONFIG_FILE_MAC = '~/.snapser/config'
8
8
  CONFIG_FILE_WIN = '%homepath%\\.snapser\\config'
9
9
 
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes