Skip to content

Commit 4da1118

Browse files
authored
Merge pull request #1687 from AdeelH/bump-version-0.20.2
Update version to `0.20.1` on the `0.20` branch
2 parents 0e234de + c8eed13 commit 4da1118

File tree

19 files changed

+28
-28
lines changed

19 files changed

+28
-28
lines changed

cookiecutter_template/cookiecutter.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"project_name": "my_project",
44
"docker_image": "my_project",
55
"parent_docker_image": "quay.io/azavea/raster-vision:pytorch-0.20",
6-
"version": "0.20.1",
6+
"version": "0.20.2",
77
"description": "A Raster Vision plugin",
88
"url": "https://github.com/azavea/raster-vision",
99
"author": "Azavea",
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
rastervision==0.20.1
1+
rastervision==0.20.2

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def setup(app: 'Sphinx') -> None:
7474
# The short X.Y version.
7575
version = u'0.20'
7676
# The full version, including alpha/beta/rc tags
77-
release = u'0.20.1'
77+
release = u'0.20.2'
7878

7979
# -- Extension configuration --------------------------------------------------
8080

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
rastervision_pipeline==0.20.1
1+
rastervision_pipeline==0.20.2
22
boto3==1.24.89
33
awscli==1.25.90

rastervision_aws_batch/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
install_requires = [x.strip() for x in all_reqs if 'git+' not in x]
1111

1212
name = 'rastervision_aws_batch'
13-
version = '0.20.1'
13+
version = '0.20.2'
1414
description = 'A rastervision plugin that adds an AWS Batch pipeline runner'
1515

1616
setup(

rastervision_aws_s3/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
rastervision_pipeline==0.20.1
1+
rastervision_pipeline==0.20.2
22
boto3==1.24.89
33
awscli==1.25.90
44
tqdm==4.64.1

rastervision_aws_s3/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
install_requires = [x.strip() for x in all_reqs if 'git+' not in x]
1111

1212
name = 'rastervision_aws_s3'
13-
version = '0.20.1'
13+
version = '0.20.2'
1414
description = 'A rastervision plugin that adds an AWS S3 file system'
1515

1616
setup(

rastervision_core/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
rastervision_pipeline==0.20.1
1+
rastervision_pipeline==0.20.2
22

33
# These 3 should be updated together to ensure compatibility. Incompatibility
44
# results in a warning about pygeos versions.

rastervision_core/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
install_requires = [x.strip() for x in all_reqs if 'git+' not in x]
1111

1212
name = 'rastervision_core'
13-
version = '0.20.1'
13+
version = '0.20.2'
1414
description = 'A rastervision plugin that adds geospatial machine learning pipelines'
1515

1616
setup(
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
rastervision_pipeline==0.20.1
1+
rastervision_pipeline==0.20.2
22
gdal==3.5.2

rastervision_gdal_vsi/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
install_requires = [x.strip() for x in all_reqs if 'git+' not in x]
1111

1212
name = 'rastervision_gdal_vsi'
13-
version = '0.20.1'
13+
version = '0.20.2'
1414
description = 'A rastervision plugin that adds a GDAL VSI file system'
1515

1616
setup(
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Library verison"""
2-
__version__ = '0.20.1'
2+
__version__ = '0.20.2'

rastervision_pipeline/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
install_requires = [x.strip() for x in all_reqs if 'git+' not in x]
1111

1212
name = 'rastervision_pipeline'
13-
version = '0.20.1'
13+
version = '0.20.2'
1414
description = 'The main rastervision package for configuring, defining, and running pipelines'
1515

1616
setup(
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
rastervision_pipeline==0.20.1
2-
rastervision_core==0.20.1
3-
rastervision_pytorch_learner==0.20.1
4-
rastervision_aws_s3==0.20.1
1+
rastervision_pipeline==0.20.2
2+
rastervision_core==0.20.2
3+
rastervision_pytorch_learner==0.20.2
4+
rastervision_aws_s3==0.20.2

rastervision_pytorch_backend/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
install_requires = [x.strip() for x in all_reqs if 'git+' not in x]
1111

1212
name = 'rastervision_pytorch_backend'
13-
version = '0.20.1'
13+
version = '0.20.2'
1414
description = 'A rastervision plugin that adds PyTorch backends for rastervision.core pipelines'
1515

1616
setup(

rastervision_pytorch_learner/requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
rastervision_pipeline==0.20.1
2-
rastervision_core==0.20.1
1+
rastervision_pipeline==0.20.2
2+
rastervision_core==0.20.2
33
numpy==1.23.3
44
pillow==9.3.0
55
torch==1.12.1

rastervision_pytorch_learner/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
install_requires = [x.strip() for x in all_reqs if 'git+' not in x]
1111

1212
name = 'rastervision_pytorch_learner'
13-
version = '0.20.1'
13+
version = '0.20.2'
1414
description = 'A rastervision plugin that adds PyTorch training pipelines'
1515

1616
setup(

requirements.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
rastervision_pipeline==0.20.1
2-
rastervision_aws_s3==0.20.1
3-
rastervision_aws_batch==0.20.1
4-
rastervision_core==0.20.1
5-
rastervision_pytorch_learner==0.20.1
6-
rastervision_pytorch_backend==0.20.1
1+
rastervision_pipeline==0.20.2
2+
rastervision_aws_s3==0.20.2
3+
rastervision_aws_batch==0.20.2
4+
rastervision_core==0.20.2
5+
rastervision_pytorch_learner==0.20.2
6+
rastervision_pytorch_backend==0.20.2

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from imp import load_source
1010

1111
here = op.abspath(op.dirname(__file__))
12-
__version__ = '0.20.1'
12+
__version__ = '0.20.2'
1313

1414
# get the dependencies and installs
1515
with io.open(op.join(here, 'requirements.txt'), encoding='utf-8') as f:

0 commit comments

Comments
 (0)