Skip to content

Commit 63c672d

Browse files
authored
Merge pull request #1928 from AdeelH/0.21-changelog-version
[0.21] Update changelog and version for `0.21.2` release
2 parents 33f6ce4 + c727b3a commit 63c672d

File tree

20 files changed

+49
-29
lines changed

20 files changed

+49
-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.1",
6-
"version": "0.21.1",
5+
"parent_docker_image": "quay.io/azavea/raster-vision:pytorch-0.21.2",
6+
"version": "0.21.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.21.1
1+
rastervision==0.21.2

docs/changelog.rst

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

4+
Raster Vision 0.21.2
5+
--------------------
6+
7+
* Features:
8+
9+
* Save model weights for each epoch 1720 (`#1921 <https://github.com/azavea/raster-vision/pull/1921>`__)
10+
11+
* Bug fixes:
12+
13+
* Do not require every plugin recorded in the model bundle to be installed when using it (`#1916 <https://github.com/azavea/raster-vision/pull/1916>`__)
14+
* Fix ``rastervision.core`` dependencies (`#1920 <https://github.com/azavea/raster-vision/pull/1920>`__)
15+
* Docs:
16+
17+
* Document config upgrader mechanism (`#1917 <https://github.com/azavea/raster-vision/pull/1917>`__)
18+
* Maintenance:
19+
20+
* Update GitHub actions' versions (`#1913 <https://github.com/azavea/raster-vision/pull/1913>`__, `#1926 <https://github.com/azavea/raster-vision/pull/1926>`__)
21+
* Add scripts for building packages and publishing them to PyPi (`#1915 <https://github.com/azavea/raster-vision/pull/1915>`__)
22+
* Add unit tests for ``VsiFileSystem`` (`#1918 <https://github.com/azavea/raster-vision/pull/1918>`__)
23+
424
Raster Vision 0.21.1
525
--------------------
626

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.1'
77+
release = u'0.21.2'
7878

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
rastervision_pipeline==0.21.1
1+
rastervision_pipeline==0.21.2
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.1'
13+
version = '0.21.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.21.1
1+
rastervision_pipeline==0.21.2
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.1'
13+
version = '0.21.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.21.1
1+
rastervision_pipeline==0.21.2
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.1'
13+
version = '0.21.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.21.1
1+
rastervision_pipeline==0.21.2
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.1'
13+
version = '0.21.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.21.1'
2+
__version__ = '0.21.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.21.1'
13+
version = '0.21.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.21.1
2-
rastervision_core==0.21.1
3-
rastervision_pytorch_learner==0.21.1
4-
rastervision_aws_s3==0.21.1
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

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.1'
13+
version = '0.21.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.21.1
2-
rastervision_core==0.21.1
1+
rastervision_pipeline==0.21.2
2+
rastervision_core==0.21.2
33
numpy==1.25.0
44
pillow==9.3.0
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.1'
13+
version = '0.21.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.21.1
2-
rastervision_aws_s3==0.21.1
3-
rastervision_aws_batch==0.21.1
4-
rastervision_core==0.21.1
5-
rastervision_pytorch_learner==0.21.1
6-
rastervision_pytorch_backend==0.21.1
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

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.1'
12+
__version__ = '0.21.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)