projen 0.98.1__tar.gz → 0.98.3__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 projen might be problematic. Click here for more details.

Files changed (35) hide show
  1. {projen-0.98.1/src/projen.egg-info → projen-0.98.3}/PKG-INFO +1 -1
  2. {projen-0.98.1 → projen-0.98.3}/setup.py +2 -2
  3. {projen-0.98.1 → projen-0.98.3}/src/projen/_jsii/__init__.py +1 -1
  4. {projen-0.98.1 → projen-0.98.3}/src/projen/_jsii/bin/projen +1 -1
  5. projen-0.98.3/src/projen/_jsii/projen@0.98.3.jsii.tgz +0 -0
  6. {projen-0.98.1 → projen-0.98.3/src/projen.egg-info}/PKG-INFO +1 -1
  7. {projen-0.98.1 → projen-0.98.3}/src/projen.egg-info/SOURCES.txt +1 -1
  8. projen-0.98.1/src/projen/_jsii/projen@0.98.1.jsii.tgz +0 -0
  9. {projen-0.98.1 → projen-0.98.3}/LICENSE +0 -0
  10. {projen-0.98.1 → projen-0.98.3}/MANIFEST.in +0 -0
  11. {projen-0.98.1 → projen-0.98.3}/README.md +0 -0
  12. {projen-0.98.1 → projen-0.98.3}/pyproject.toml +0 -0
  13. {projen-0.98.1 → projen-0.98.3}/setup.cfg +0 -0
  14. {projen-0.98.1 → projen-0.98.3}/src/projen/__init__.py +0 -0
  15. {projen-0.98.1 → projen-0.98.3}/src/projen/awscdk/__init__.py +0 -0
  16. {projen-0.98.1 → projen-0.98.3}/src/projen/build/__init__.py +0 -0
  17. {projen-0.98.1 → projen-0.98.3}/src/projen/cdk/__init__.py +0 -0
  18. {projen-0.98.1 → projen-0.98.3}/src/projen/cdk8s/__init__.py +0 -0
  19. {projen-0.98.1 → projen-0.98.3}/src/projen/cdktf/__init__.py +0 -0
  20. {projen-0.98.1 → projen-0.98.3}/src/projen/circleci/__init__.py +0 -0
  21. {projen-0.98.1 → projen-0.98.3}/src/projen/github/__init__.py +0 -0
  22. {projen-0.98.1 → projen-0.98.3}/src/projen/github/workflows/__init__.py +0 -0
  23. {projen-0.98.1 → projen-0.98.3}/src/projen/gitlab/__init__.py +0 -0
  24. {projen-0.98.1 → projen-0.98.3}/src/projen/java/__init__.py +0 -0
  25. {projen-0.98.1 → projen-0.98.3}/src/projen/javascript/__init__.py +0 -0
  26. {projen-0.98.1 → projen-0.98.3}/src/projen/javascript/biome_config/__init__.py +0 -0
  27. {projen-0.98.1 → projen-0.98.3}/src/projen/py.typed +0 -0
  28. {projen-0.98.1 → projen-0.98.3}/src/projen/python/__init__.py +0 -0
  29. {projen-0.98.1 → projen-0.98.3}/src/projen/release/__init__.py +0 -0
  30. {projen-0.98.1 → projen-0.98.3}/src/projen/typescript/__init__.py +0 -0
  31. {projen-0.98.1 → projen-0.98.3}/src/projen/vscode/__init__.py +0 -0
  32. {projen-0.98.1 → projen-0.98.3}/src/projen/web/__init__.py +0 -0
  33. {projen-0.98.1 → projen-0.98.3}/src/projen.egg-info/dependency_links.txt +0 -0
  34. {projen-0.98.1 → projen-0.98.3}/src/projen.egg-info/requires.txt +0 -0
  35. {projen-0.98.1 → projen-0.98.3}/src/projen.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: projen
3
- Version: 0.98.1
3
+ Version: 0.98.3
4
4
  Summary: CDK for software projects
5
5
  Home-page: https://github.com/projen/projen.git
6
6
  Author: Amazon Web Services
@@ -5,7 +5,7 @@ kwargs = json.loads(
5
5
  """
6
6
  {
7
7
  "name": "projen",
8
- "version": "0.98.1",
8
+ "version": "0.98.3",
9
9
  "description": "CDK for software projects",
10
10
  "license": "Apache-2.0",
11
11
  "url": "https://github.com/projen/projen.git",
@@ -43,7 +43,7 @@ kwargs = json.loads(
43
43
  ],
44
44
  "package_data": {
45
45
  "projen._jsii": [
46
- "projen@0.98.1.jsii.tgz"
46
+ "projen@0.98.3.jsii.tgz"
47
47
  ],
48
48
  "projen": [
49
49
  "py.typed"
@@ -31,7 +31,7 @@ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing
31
31
  import constructs._jsii
32
32
 
33
33
  __jsii_assembly__ = jsii.JSIIAssembly.load(
34
- "projen", "0.98.1", __name__[0:-6], "projen@0.98.1.jsii.tgz"
34
+ "projen", "0.98.3", __name__[0:-6], "projen@0.98.3.jsii.tgz"
35
35
  )
36
36
 
37
37
  __all__ = [
@@ -8,7 +8,7 @@ if "JSII_RUNTIME_PACKAGE_CACHE" not in os.environ:
8
8
  os.environ["JSII_RUNTIME_PACKAGE_CACHE"] = "disabled"
9
9
 
10
10
  __jsii_assembly__ = jsii.JSIIAssembly.load(
11
- "projen", "0.98.1", "projen", "projen@0.98.1.jsii.tgz"
11
+ "projen", "0.98.3", "projen", "projen@0.98.3.jsii.tgz"
12
12
  )
13
13
 
14
14
  exit_code = __jsii_assembly__.invokeBinScript("projen", "projen", sys.argv[1:])
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: projen
3
- Version: 0.98.1
3
+ Version: 0.98.3
4
4
  Summary: CDK for software projects
5
5
  Home-page: https://github.com/projen/projen.git
6
6
  Author: Amazon Web Services
@@ -11,7 +11,7 @@ src/projen.egg-info/dependency_links.txt
11
11
  src/projen.egg-info/requires.txt
12
12
  src/projen.egg-info/top_level.txt
13
13
  src/projen/_jsii/__init__.py
14
- src/projen/_jsii/projen@0.98.1.jsii.tgz
14
+ src/projen/_jsii/projen@0.98.3.jsii.tgz
15
15
  src/projen/_jsii/bin/projen
16
16
  src/projen/awscdk/__init__.py
17
17
  src/projen/build/__init__.py
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes