Skip to content

Commit 963ae6b

Browse files
committed
update versions everywhere for a final 1.2.0 release
1 parent 4cc8fe1 commit 963ae6b

File tree

4 files changed

+15
-14
lines changed

4 files changed

+15
-14
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,18 +53,18 @@ jobs:
5353
for region in us-east-1 us-west-2 eu-central-1
5454
do
5555
LVERSION="$(aws lambda publish-layer-version --region ${region} \
56-
--layer-name geolambda-dev --license-info 'MIT' \
56+
--layer-name geolambda --license-info 'MIT' \
5757
--description 'Native geospatial libaries for all runtimes' \
5858
--zip-file fileb://lambda-deploy.zip | jq '.Version')"
5959
aws lambda add-layer-version-permission --region ${region} \
60-
--layer-name geolambda-dev --action lambda:GetLayerVersion \
60+
--layer-name geolambda --action lambda:GetLayerVersion \
6161
--statement-id public --version-number ${LVERSION} --principal '*'
6262
LVERSION="$(aws lambda publish-layer-version --region ${region} \
63-
--layer-name geolambda-python-dev --license-info 'MIT' \
63+
--layer-name geolambda-python --license-info 'MIT' \
6464
--description 'Geospatial Python libraries' \
6565
--zip-file fileb://lambda-deploy.zip | jq '.Version')"
6666
aws lambda add-layer-version-permission --region ${region} \
67-
--layer-name geolambda-python-dev --action lambda:GetLayerVersion \
67+
--layer-name geolambda-python --action lambda:GetLayerVersion \
6868
--statement-id public --version-number ${LVERSION} --principal '*'
6969
done
7070
# deploy Python Lambda layers

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9-
## [v1.2.0] - 2019-10-21
9+
## [v1.2.0] - 2019-10-24
1010

1111
### Added
1212
- A Python GeoLambda Layer is now published, along with the base Lambda Layer. The base layer *must* be included in any Lambda that uses the Python GeoLambda layer. It includes the Python libraries GDAL, rasterio, pyproj, and shapely.
13+
- Base geolambda includes OpenSSL 1.0.2, as this is required for compiling Python 3.7+. It is not included in the Lambda layer, just the base layer for ease of creating different versions of Python child images.
1314

1415
### Changed
1516
- The python diectory, and the new Lambda layer, now uses Python 3.7.4

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,21 +40,21 @@ The GeoLambda image does not have an entrypoint defined, so a command must be pr
4040

4141
If you just wish to use the publicly available Lambda layer you will need the ARN for the layer in same region as your Lambda function. Currently, GeoLambda layers are available in `us-east-1`, `us-west-2`, and `eu-central-1`. If you want to use it in another region please file an issue or you can also create your own layer using this repository (see instructions below on 'Create a new version').
4242

43-
#### v1.2.0rc2
43+
#### v1.2.0
4444

4545
| Region | ARN |
4646
| ------ | --- |
47-
| us-east-1 | arn:aws:lambda:us-east-1:552188055668:layer:geolambda-dev:6 |
48-
| us-west-2 | arn:aws:lambda:us-west-2:552188055668:layer:geolambda-dev:5 |
49-
| eu-central-1 | arn:aws:lambda:eu-central-1:552188055668:layer:geolambda-dev:5 |
47+
| us-east-1 | arn:aws:lambda:us-east-1:552188055668:layer:geolambda:2 |
48+
| us-west-2 | arn:aws:lambda:us-west-2:552188055668:layer:geolambda:2 |
49+
| eu-central-1 | arn:aws:lambda:eu-central-1:552188055668:layer:geolambda:2 |
5050

51-
#### v1.2.0rc2-python
51+
#### v1.2.0-python
5252

5353
| Region | ARN |
5454
| ------ | --- |
55-
| us-east-1 | arn:aws:lambda:us-east-1:552188055668:layer:geolambda-python-dev:1 |
56-
| us-west-2 | arn:aws:lambda:us-west-2:552188055668:layer:geolambda-python-dev:1 |
57-
| eu-central-1 | arn:aws:lambda:eu-central-1:552188055668:layer:geolambda-python-dev:1 |
55+
| us-east-1 | arn:aws:lambda:us-east-1:552188055668:layer:geolambda-python:1 |
56+
| us-west-2 | arn:aws:lambda:us-west-2:552188055668:layer:geolambda-python:1 |
57+
| eu-central-1 | arn:aws:lambda:eu-central-1:552188055668:layer:geolambda-python:1 |
5858

5959
#### v1.1.0
6060

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.0rc2
1+
1.2.0

0 commit comments

Comments
 (0)