Skip to content

Commit fe1d152

Browse files
authored
Merge pull request #1961 from AdeelH/changelog-version
[0.21] Update changelog and version for `0.21.3` release
2 parents 2d2ac06 + 2cadcb0 commit fe1d152

File tree

20 files changed

+52
-29
lines changed

20 files changed

+52
-29
lines changed

cookiecutter_template/cookiecutter.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"caps_project_name": "MY_PROJECT",
33
"project_name": "my_project",
44
"docker_image": "my_project",
5-
"parent_docker_image": "quay.io/azavea/raster-vision:pytorch-0.21.2",
6-
"version": "0.21.2",
5+
"parent_docker_image": "quay.io/azavea/raster-vision:pytorch-0.21.3",
6+
"version": "0.21.3",
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.21.2
1+
rastervision==0.21.3

docs/changelog.rst

+23
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,29 @@
11
CHANGELOG
22
=========
33

4+
Raster Vision 0.21.3
5+
--------------------
6+
7+
* Features:
8+
9+
* Allow reading pre-chipped datasets with non-RGB TIFF chips (`#1932 <https://github.com/azavea/raster-vision/pull/1932>`__)
10+
11+
* Fixes:
12+
13+
* Normalize pixel values in the Spacenet Vegas examples (`#1930 <https://github.com/azavea/raster-vision/pull/1930>`__)
14+
* Account for ``bbox`` when saving predictions (`#1931 <https://github.com/azavea/raster-vision/pull/1931>`__)
15+
* Ensure SS datasets always return label array with correct ``dtype`` (`#1954 <https://github.com/azavea/raster-vision/pull/1954>`__)
16+
* Fix bug in ``Visualizer`` when plotting temporal data w/ batch size 1 (`#1958 <https://github.com/azavea/raster-vision/pull/1958>`__)
17+
* Allow specifying ``chip_sz`` in ``StatsTransform.from_raster_sources()`` (`#1933 <https://github.com/azavea/raster-vision/pull/1933>`__)
18+
* Misc. minor fixes (`#1933 <https://github.com/azavea/raster-vision/pull/1933>`__)
19+
* Docs:
20+
21+
* Update release instructions to simplify patch release process (`#1934 <https://github.com/azavea/raster-vision/pull/1934>`__)
22+
* Maintenance:
23+
24+
* Bump pillow to address CVE-2023-4863 (`#1952 <https://github.com/azavea/raster-vision/pull/1952>`__)
25+
* Update CI and release workflows to free up disk space before building docker image (`#1953 <https://github.com/azavea/raster-vision/pull/1953>`__, `#1959 <https://github.com/azavea/raster-vision/pull/1959>`__)
26+
427
Raster Vision 0.21.2
528
--------------------
629

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.21'
7676
# The full version, including alpha/beta/rc tags
77-
release = u'0.21.2'
77+
release = u'0.21.3'
7878

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
rastervision_pipeline==0.21.2
1+
rastervision_pipeline==0.21.3
22
boto3==1.28.8
33
awscli==1.29.8

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.21.2'
13+
version = '0.21.3'
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.21.2
1+
rastervision_pipeline==0.21.3
22
boto3==1.28.8
33
awscli==1.29.8
44
tqdm==4.65.0

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.21.2'
13+
version = '0.21.3'
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.21.2
1+
rastervision_pipeline==0.21.3
22
shapely==2.0.1
33
geopandas==0.13.2
44
numpy==1.25.0

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.21.2'
13+
version = '0.21.3'
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.21.2
1+
rastervision_pipeline==0.21.3
22
gdal>=3.4.1,<=3.6.3

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.21.2'
13+
version = '0.21.3'
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.21.2'
2+
__version__ = '0.21.3'

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.21.2'
13+
version = '0.21.3'
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.21.2
2-
rastervision_core==0.21.2
3-
rastervision_pytorch_learner==0.21.2
4-
rastervision_aws_s3==0.21.2
1+
rastervision_pipeline==0.21.3
2+
rastervision_core==0.21.3
3+
rastervision_pytorch_learner==0.21.3
4+
rastervision_aws_s3==0.21.3

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.21.2'
13+
version = '0.21.3'
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.21.2
2-
rastervision_core==0.21.2
1+
rastervision_pipeline==0.21.3
2+
rastervision_core==0.21.3
33
numpy==1.25.0
44
pillow==10.0.1
55
torch==2.0.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.21.2'
13+
version = '0.21.3'
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.21.2
2-
rastervision_aws_s3==0.21.2
3-
rastervision_aws_batch==0.21.2
4-
rastervision_core==0.21.2
5-
rastervision_pytorch_learner==0.21.2
6-
rastervision_pytorch_backend==0.21.2
1+
rastervision_pipeline==0.21.3
2+
rastervision_aws_s3==0.21.3
3+
rastervision_aws_batch==0.21.3
4+
rastervision_core==0.21.3
5+
rastervision_pytorch_learner==0.21.3
6+
rastervision_pytorch_backend==0.21.3

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.21.2'
12+
__version__ = '0.21.3'
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)