From 0b22250f52267ea686cd6cb60f72e78d907b1587 Mon Sep 17 00:00:00 2001 From: Adeel Hassan Date: Tue, 17 Oct 2023 09:36:51 -0400 Subject: [PATCH 1/2] add changelog for version 0.21.3 --- docs/changelog.rst | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/docs/changelog.rst b/docs/changelog.rst index c52967a80..d131a9acb 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,29 @@ CHANGELOG ========= +Raster Vision 0.21.3 +-------------------- + +* Features: + + * Allow reading pre-chipped datasets with non-RGB TIFF chips (`#1932 `__) + +* Fixes: + + * Normalize pixel values in the Spacenet Vegas examples (`#1930 `__) + * Account for ``bbox`` when saving predictions (`#1931 `__) + * Ensure SS datasets always return label array with correct ``dtype`` (`#1954 `__) + * Fix bug in ``Visualizer`` when plotting temporal data w/ batch size 1 (`#1958 `__) + * Allow specifying ``chip_sz`` in ``StatsTransform.from_raster_sources()`` (`#1933 `__) + * Misc. minor fixes (`#1933 `__) +* Docs: + + * Update release instructions to simplify patch release process (`#1934 `__) +* Maintenance: + + * Bump pillow to address CVE-2023-4863 (`#1952 `__) + * Update CI and release workflows to free up disk space before building docker image (`#1953 `__, `#1959 `__) + Raster Vision 0.21.2 -------------------- From 58e5fec1884b9c174347606294550be07f249f77 Mon Sep 17 00:00:00 2001 From: Adeel Hassan Date: Wed, 18 Oct 2023 09:31:08 -0400 Subject: [PATCH 2/2] bump dev version to 0.21.4-dev --- cookiecutter_template/cookiecutter.json | 4 ++-- .../requirements.txt | 2 +- docs/conf.py | 2 +- rastervision_aws_batch/requirements.txt | 2 +- rastervision_aws_batch/setup.py | 2 +- rastervision_aws_s3/requirements.txt | 2 +- rastervision_aws_s3/setup.py | 2 +- rastervision_core/requirements.txt | 2 +- rastervision_core/setup.py | 2 +- rastervision_gdal_vsi/requirements.txt | 2 +- rastervision_gdal_vsi/setup.py | 2 +- .../rastervision/pipeline/version.py | 2 +- rastervision_pipeline/setup.py | 2 +- rastervision_pytorch_backend/requirements.txt | 8 ++++---- rastervision_pytorch_backend/setup.py | 2 +- rastervision_pytorch_learner/requirements.txt | 4 ++-- rastervision_pytorch_learner/setup.py | 2 +- requirements.txt | 12 ++++++------ setup.py | 2 +- 19 files changed, 29 insertions(+), 29 deletions(-) diff --git a/cookiecutter_template/cookiecutter.json b/cookiecutter_template/cookiecutter.json index 29cd344e5..8c63642d2 100644 --- a/cookiecutter_template/cookiecutter.json +++ b/cookiecutter_template/cookiecutter.json @@ -2,8 +2,8 @@ "caps_project_name": "MY_PROJECT", "project_name": "my_project", "docker_image": "my_project", - "parent_docker_image": "quay.io/azavea/raster-vision:pytorch-0.21.3-dev", - "version": "0.21.3-dev", + "parent_docker_image": "quay.io/azavea/raster-vision:pytorch-0.21.4-dev", + "version": "0.21.4-dev", "description": "A Raster Vision plugin", "url": "https://github.com/azavea/raster-vision", "author": "Azavea", diff --git a/cookiecutter_template/{{cookiecutter.project_name}}/rastervision_{{cookiecutter.project_name}}/requirements.txt b/cookiecutter_template/{{cookiecutter.project_name}}/rastervision_{{cookiecutter.project_name}}/requirements.txt index 05c3b8c36..0e65cb220 100644 --- a/cookiecutter_template/{{cookiecutter.project_name}}/rastervision_{{cookiecutter.project_name}}/requirements.txt +++ b/cookiecutter_template/{{cookiecutter.project_name}}/rastervision_{{cookiecutter.project_name}}/requirements.txt @@ -1 +1 @@ -rastervision==0.21.3-dev +rastervision==0.21.4-dev diff --git a/docs/conf.py b/docs/conf.py index 70990b36d..f2f9660fb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -74,7 +74,7 @@ def setup(app: 'Sphinx') -> None: # The short X.Y version. version = u'0.21' # The full version, including alpha/beta/rc tags -release = u'0.21.3-dev' +release = u'0.21.4-dev' # -- Extension configuration -------------------------------------------------- diff --git a/rastervision_aws_batch/requirements.txt b/rastervision_aws_batch/requirements.txt index 1c3943302..6be6833d3 100644 --- a/rastervision_aws_batch/requirements.txt +++ b/rastervision_aws_batch/requirements.txt @@ -1,3 +1,3 @@ -rastervision_pipeline==0.21.3-dev +rastervision_pipeline==0.21.4-dev boto3==1.28.8 awscli==1.29.8 diff --git a/rastervision_aws_batch/setup.py b/rastervision_aws_batch/setup.py index f5189664f..a44a213fb 100644 --- a/rastervision_aws_batch/setup.py +++ b/rastervision_aws_batch/setup.py @@ -10,7 +10,7 @@ install_requires = [x.strip() for x in all_reqs if 'git+' not in x] name = 'rastervision_aws_batch' -version = '0.21.3-dev' +version = '0.21.4-dev' description = 'A rastervision plugin that adds an AWS Batch pipeline runner' setup( diff --git a/rastervision_aws_s3/requirements.txt b/rastervision_aws_s3/requirements.txt index e35b1b008..35d4e9564 100644 --- a/rastervision_aws_s3/requirements.txt +++ b/rastervision_aws_s3/requirements.txt @@ -1,4 +1,4 @@ -rastervision_pipeline==0.21.3-dev +rastervision_pipeline==0.21.4-dev boto3==1.28.8 awscli==1.29.8 tqdm==4.65.0 diff --git a/rastervision_aws_s3/setup.py b/rastervision_aws_s3/setup.py index 79d948e18..2f0a293a4 100644 --- a/rastervision_aws_s3/setup.py +++ b/rastervision_aws_s3/setup.py @@ -10,7 +10,7 @@ install_requires = [x.strip() for x in all_reqs if 'git+' not in x] name = 'rastervision_aws_s3' -version = '0.21.3-dev' +version = '0.21.4-dev' description = 'A rastervision plugin that adds an AWS S3 file system' setup( diff --git a/rastervision_core/requirements.txt b/rastervision_core/requirements.txt index b9baa23c1..7f1c32ded 100644 --- a/rastervision_core/requirements.txt +++ b/rastervision_core/requirements.txt @@ -1,4 +1,4 @@ -rastervision_pipeline==0.21.3-dev +rastervision_pipeline==0.21.4-dev shapely==2.0.1 geopandas==0.13.2 numpy==1.25.0 diff --git a/rastervision_core/setup.py b/rastervision_core/setup.py index 01f768180..7b8f0808c 100644 --- a/rastervision_core/setup.py +++ b/rastervision_core/setup.py @@ -10,7 +10,7 @@ install_requires = [x.strip() for x in all_reqs if 'git+' not in x] name = 'rastervision_core' -version = '0.21.3-dev' +version = '0.21.4-dev' description = 'A rastervision plugin that adds geospatial machine learning pipelines' setup( diff --git a/rastervision_gdal_vsi/requirements.txt b/rastervision_gdal_vsi/requirements.txt index caaef3259..5e77beaec 100644 --- a/rastervision_gdal_vsi/requirements.txt +++ b/rastervision_gdal_vsi/requirements.txt @@ -1,2 +1,2 @@ -rastervision_pipeline==0.21.3-dev +rastervision_pipeline==0.21.4-dev gdal>=3.4.1,<=3.6.3 diff --git a/rastervision_gdal_vsi/setup.py b/rastervision_gdal_vsi/setup.py index 9be7b40e8..dafa55384 100644 --- a/rastervision_gdal_vsi/setup.py +++ b/rastervision_gdal_vsi/setup.py @@ -10,7 +10,7 @@ install_requires = [x.strip() for x in all_reqs if 'git+' not in x] name = 'rastervision_gdal_vsi' -version = '0.21.3-dev' +version = '0.21.4-dev' description = 'A rastervision plugin that adds a GDAL VSI file system' setup( diff --git a/rastervision_pipeline/rastervision/pipeline/version.py b/rastervision_pipeline/rastervision/pipeline/version.py index 91828fafa..33edbba08 100644 --- a/rastervision_pipeline/rastervision/pipeline/version.py +++ b/rastervision_pipeline/rastervision/pipeline/version.py @@ -1,2 +1,2 @@ """Library verison""" -__version__ = '0.21.3-dev' +__version__ = '0.21.4-dev' diff --git a/rastervision_pipeline/setup.py b/rastervision_pipeline/setup.py index 10523bd89..758c49575 100644 --- a/rastervision_pipeline/setup.py +++ b/rastervision_pipeline/setup.py @@ -10,7 +10,7 @@ install_requires = [x.strip() for x in all_reqs if 'git+' not in x] name = 'rastervision_pipeline' -version = '0.21.3-dev' +version = '0.21.4-dev' description = 'The main rastervision package for configuring, defining, and running pipelines' setup( diff --git a/rastervision_pytorch_backend/requirements.txt b/rastervision_pytorch_backend/requirements.txt index 206a9f97b..d79eafb43 100644 --- a/rastervision_pytorch_backend/requirements.txt +++ b/rastervision_pytorch_backend/requirements.txt @@ -1,4 +1,4 @@ -rastervision_pipeline==0.21.3-dev -rastervision_core==0.21.3-dev -rastervision_pytorch_learner==0.21.3-dev -rastervision_aws_s3==0.21.3-dev +rastervision_pipeline==0.21.4-dev +rastervision_core==0.21.4-dev +rastervision_pytorch_learner==0.21.4-dev +rastervision_aws_s3==0.21.4-dev diff --git a/rastervision_pytorch_backend/setup.py b/rastervision_pytorch_backend/setup.py index 8d335181d..069214291 100644 --- a/rastervision_pytorch_backend/setup.py +++ b/rastervision_pytorch_backend/setup.py @@ -10,7 +10,7 @@ install_requires = [x.strip() for x in all_reqs if 'git+' not in x] name = 'rastervision_pytorch_backend' -version = '0.21.3-dev' +version = '0.21.4-dev' description = 'A rastervision plugin that adds PyTorch backends for rastervision.core pipelines' setup( diff --git a/rastervision_pytorch_learner/requirements.txt b/rastervision_pytorch_learner/requirements.txt index 1f247c723..6d50ddf17 100644 --- a/rastervision_pytorch_learner/requirements.txt +++ b/rastervision_pytorch_learner/requirements.txt @@ -1,5 +1,5 @@ -rastervision_pipeline==0.21.3-dev -rastervision_core==0.21.3-dev +rastervision_pipeline==0.21.4-dev +rastervision_core==0.21.4-dev numpy==1.25.0 pillow==10.0.1 torch==2.0.1 diff --git a/rastervision_pytorch_learner/setup.py b/rastervision_pytorch_learner/setup.py index dc7c8f9a3..a02c2c31e 100644 --- a/rastervision_pytorch_learner/setup.py +++ b/rastervision_pytorch_learner/setup.py @@ -10,7 +10,7 @@ install_requires = [x.strip() for x in all_reqs if 'git+' not in x] name = 'rastervision_pytorch_learner' -version = '0.21.3-dev' +version = '0.21.4-dev' description = 'A rastervision plugin that adds PyTorch training pipelines' setup( diff --git a/requirements.txt b/requirements.txt index 6b1fbdc4b..791823bb4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ -rastervision_pipeline==0.21.3-dev -rastervision_aws_s3==0.21.3-dev -rastervision_aws_batch==0.21.3-dev -rastervision_core==0.21.3-dev -rastervision_pytorch_learner==0.21.3-dev -rastervision_pytorch_backend==0.21.3-dev +rastervision_pipeline==0.21.4-dev +rastervision_aws_s3==0.21.4-dev +rastervision_aws_batch==0.21.4-dev +rastervision_core==0.21.4-dev +rastervision_pytorch_learner==0.21.4-dev +rastervision_pytorch_backend==0.21.4-dev diff --git a/setup.py b/setup.py index 056833e8f..ae25fe49a 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ from imp import load_source here = op.abspath(op.dirname(__file__)) -__version__ = '0.21.3-dev' +__version__ = '0.21.4-dev' # get the dependencies and installs with io.open(op.join(here, 'requirements.txt'), encoding='utf-8') as f: