Skip to content

Commit

Permalink
Merge pull request #74 from developmentseed/develop
Browse files Browse the repository at this point in the history
publish 1.2.0rc2
  • Loading branch information
matthewhanson authored Oct 23, 2019
2 parents 339e998 + 4cc8fe1 commit f434de7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
7 changes: 3 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,11 @@ jobs:
--layer-name geolambda-dev --action lambda:GetLayerVersion \
--statement-id public --version-number ${LVERSION} --principal '*'
LVERSION="$(aws lambda publish-layer-version --region ${region} \
--layer-name geolambda-dev-python --license-info 'MIT' \
--layer-name geolambda-python-dev --license-info 'MIT' \
--description 'Geospatial Python libraries' \
--zip-file fileb://lambda-deploy.zip | jq '.Version')
--compatible-runtimes python3.7"
--zip-file fileb://lambda-deploy.zip | jq '.Version')"
aws lambda add-layer-version-permission --region ${region} \
--layer-name geolambda-dev-python --action lambda:GetLayerVersion \
--layer-name geolambda-python-dev --action lambda:GetLayerVersion \
--statement-id public --version-number ${LVERSION} --principal '*'
done
# deploy Python Lambda layers
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,21 +40,21 @@ The GeoLambda image does not have an entrypoint defined, so a command must be pr

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').

#### v1.2.0rc1
#### v1.2.0rc2

| Region | ARN |
| ------ | --- |
| us-east-1 | arn:aws:lambda:us-east-1:552188055668:layer:geolambda-dev:5 |
| us-east-1 | arn:aws:lambda:us-east-1:552188055668:layer:geolambda-dev:6 |
| us-west-2 | arn:aws:lambda:us-west-2:552188055668:layer:geolambda-dev:5 |
| eu-central-1 | arn:aws:lambda:eu-central-1:552188055668:layer:geolambda-dev:5 |

#### v1.2.0rc1-python
#### v1.2.0rc2-python

| Region | ARN |
| ------ | --- |
| us-east-1 | arn:aws:lambda:us-east-1:552188055668:layer:geolambda-dev-python:1 |
| us-west-2 | arn:aws:lambda:us-west-2:552188055668:layer:geolambda-dev-python:1 |
| eu-central-1 | arn:aws:lambda:eu-central-1:552188055668:layer:geolambda-dev-python:1 |
| us-east-1 | arn:aws:lambda:us-east-1:552188055668:layer:geolambda-python-dev:1 |
| us-west-2 | arn:aws:lambda:us-west-2:552188055668:layer:geolambda-python-dev:1 |
| eu-central-1 | arn:aws:lambda:eu-central-1:552188055668:layer:geolambda-python-dev:1 |

#### v1.1.0

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.0rc1
1.2.0rc2

0 comments on commit f434de7

Please sign in to comment.