Skip to content

Commit

Permalink
bump version to 0.30.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AdeelH committed Apr 10, 2024
1 parent 95ce838 commit bdd5f64
Show file tree
Hide file tree
Showing 22 changed files with 33 additions and 33 deletions.
4 changes: 2 additions & 2 deletions cookiecutter_template/cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.4-dev",
"version": "0.21.4-dev",
"parent_docker_image": "quay.io/azavea/raster-vision:pytorch-0.30.0",
"version": "0.30.0",
"description": "A Raster Vision plugin",
"url": "https://github.com/azavea/raster-vision",
"author": "Azavea",
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
rastervision==0.21.4-dev
rastervision==0.30.0
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ def setup(app: 'Sphinx') -> None:
# built documents.
#
# The short X.Y version.
version = u'0.21'
version = u'0.30'
# The full version, including alpha/beta/rc tags
release = u'0.21.4-dev'
release = u'0.30.0'

# -- Extension configuration --------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/framework/examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ Note that the input file is assumed to have the same channel order and statistic

When unzipped, the model bundle contains a ``model.pth`` file which can be used for fine-tuning.

.. note:: The model bundles linked below are only compatible with Raster Vision version ``0.21`` or greater.
.. note:: The model bundles linked below are only compatible with Raster Vision version ``0.30`` or greater.

.. list-table:: Model Zoo
:header-rows: 1
Expand Down
2 changes: 1 addition & 1 deletion rastervision_aws_batch/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
rastervision_pipeline==0.21.4-dev
rastervision_pipeline==0.30.0
boto3==1.34.79
awscli==1.32.79
2 changes: 1 addition & 1 deletion rastervision_aws_batch/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import re

name = 'rastervision_aws_batch'
version = '0.21.4-dev'
version = '0.30.0'
description = 'A rastervision plugin that adds an AWS Batch pipeline runner'
requirement_constraints = {}

Expand Down
2 changes: 1 addition & 1 deletion rastervision_aws_s3/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
rastervision_pipeline==0.21.4-dev
rastervision_pipeline==0.30.0
boto3==1.34.79
awscli==1.32.79
tqdm==4.66.2
Expand Down
2 changes: 1 addition & 1 deletion rastervision_aws_s3/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import re

name = 'rastervision_aws_s3'
version = '0.21.4-dev'
version = '0.30.0'
description = 'A rastervision plugin that adds an AWS S3 file system'
requirement_constraints = {}

Expand Down
2 changes: 1 addition & 1 deletion rastervision_aws_sagemaker/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
rastervision_pipeline==0.21.4-dev
rastervision_pipeline==0.30.0
sagemaker==2.214.3
2 changes: 1 addition & 1 deletion rastervision_aws_sagemaker/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import re

name = 'rastervision_aws_sagemaker'
version = '0.21'
version = '0.30.0'
description = 'A rastervision plugin that adds an AWS SageMaker pipeline runner'
requirement_constraints = {}

Expand Down
2 changes: 1 addition & 1 deletion rastervision_core/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
rastervision_pipeline==0.21.4-dev
rastervision_pipeline==0.30.0
shapely==2.0.2
geopandas==0.14.3
numpy==1.26.3
Expand Down
2 changes: 1 addition & 1 deletion rastervision_core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import re

name = 'rastervision_core'
version = '0.21.4-dev'
version = '0.30.0'
description = 'A rastervision plugin that adds geospatial machine learning pipelines'
requirement_constraints = {}

Expand Down
2 changes: 1 addition & 1 deletion rastervision_gdal_vsi/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
rastervision_pipeline==0.21.4-dev
rastervision_pipeline==0.30.0
gdal>=3.4.1,<=3.6.3
2 changes: 1 addition & 1 deletion rastervision_gdal_vsi/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import re

name = 'rastervision_gdal_vsi'
version = '0.21.4-dev'
version = '0.30.0'
description = 'A rastervision plugin that adds a GDAL VSI file system'
requirement_constraints = {}

Expand Down
2 changes: 1 addition & 1 deletion rastervision_pipeline/rastervision/pipeline/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Library version"""
__version__ = '0.21.4-dev'
__version__ = '0.30.0'
2 changes: 1 addition & 1 deletion rastervision_pipeline/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import re

name = 'rastervision_pipeline'
version = '0.21.4-dev'
version = '0.30.0'
description = 'The main rastervision package for configuring, defining, and running pipelines'
requirement_constraints = {
'pydantic': '<2',
Expand Down
8 changes: 4 additions & 4 deletions rastervision_pytorch_backend/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
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
rastervision_pipeline==0.30.0
rastervision_core==0.30.0
rastervision_pytorch_learner==0.30.0
rastervision_aws_s3==0.30.0
2 changes: 1 addition & 1 deletion rastervision_pytorch_backend/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import re

name = 'rastervision_pytorch_backend'
version = '0.21.4-dev'
version = '0.30.0'
description = 'A rastervision plugin that adds PyTorch backends for rastervision.core pipelines'
requirement_constraints = {}

Expand Down
4 changes: 2 additions & 2 deletions rastervision_pytorch_learner/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
rastervision_pipeline==0.21.4-dev
rastervision_core==0.21.4-dev
rastervision_pipeline==0.30.0
rastervision_core==0.30.0
numpy==1.26.4
pillow==10.3.0
torch==2.2.2
Expand Down
2 changes: 1 addition & 1 deletion rastervision_pytorch_learner/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import re

name = 'rastervision_pytorch_learner'
version = '0.21.4-dev'
version = '0.30.0'
description = 'A rastervision plugin that adds PyTorch training pipelines'
requirement_constraints = {}

Expand Down
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
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
rastervision_pipeline==0.30.0
rastervision_aws_s3==0.30.0
rastervision_aws_batch==0.30.0
rastervision_core==0.30.0
rastervision_pytorch_learner==0.30.0
rastervision_pytorch_backend==0.30.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import setup, find_namespace_packages
import re

__version__ = '0.21.4-dev'
__version__ = '0.30.0'
requirement_constraints = {}

here = abspath(dirname(__file__))
Expand Down

0 comments on commit bdd5f64

Please sign in to comment.