Skip to content

Commit 6fad409

Browse files
committed
update VERSION, changelog, readme, ci for a 1.1.0 release
1 parent 2d15413 commit 6fad409

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ jobs:
5151
for region in us-east-1 us-west-2 eu-central-1
5252
do
5353
LVERSION="$(aws lambda publish-layer-version --region ${region} \
54-
--layer-name geolambda-dev --license-info 'MIT' \
54+
--layer-name geolambda --license-info 'MIT' \
5555
--description 'Native geospatial libaries for all runtimes' \
5656
--zip-file fileb://lambda-deploy.zip | jq '.Version')"
5757
aws lambda add-layer-version-permission --region ${region} \
58-
--layer-name geolambda-dev --action lambda:GetLayerVersion \
58+
--layer-name geolambda --action lambda:GetLayerVersion \
5959
--statement-id public --version-number ${LVERSION} --principal '*'
6060
done
6161

CHANGELOG.md

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

77
## [Unreleased]
88

9-
## [v1.1.0rc1] - 2018-03-07
9+
## [v1.1.0] - 2018-03-12
1010

1111
### Added
1212
- Make compatible with Lambda Layers
@@ -52,5 +52,5 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
5252
- GDAL_VERSION=2.3.1
5353

5454
[Unreleased]: https://github.com/sat-utils/sat-stac/compare/master...develop
55-
[v1.1.0rc1]: https://github.com/developmentseed/geolambda/compare/1.0.0...1.1.0rc1
55+
[v1.1.0]: https://github.com/developmentseed/geolambda/compare/1.0.0...1.1.0
5656
[v1.0.0]: https://github.com/developmentseed/geolambda/tree/1.0.0

README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# GeoLambda: geospatial AWS Lambda Layer
22

3-
Note: this is a pre-release version (v1.1.0rc1) of GeoLambda
4-
53
The GeoLambda project provides public Docker images and AWS Lambda Layers containing common geospatial native libraries. GeoLambda contains the libraries PROJ.5, GEOS, GeoTIFF, HDF4/5, SZIP, NetCDF, OpenJPEG, WEBP, ZSTD, and GDAL. For some applications you may wish to minimize the size of the libraries by excluding unused libraries, or you may wish to add other libraries. In this case this repository can be used as a template to create your own Docker image or Lambda Layer following the instructions in this README.
64

75
This repository also contains examples and pre-built images for specific runtimes.
@@ -15,7 +13,7 @@ While GeoLambda was initially intended for AWS Lambda they are also useful as ba
1513
| geolambda | GDAL |
1614
| -------- | ---- |
1715
| 1.0.0 | 2.3.1 |
18-
| 1.1.0rc1 | 2.4.0 |
16+
| 1.1.0 | 2.4.0 |
1917

2018
To get the version numbers of all installed packages see the [CHANGELOG](CHANGELOG.md) or the Dockerfile for the specific version.
2119

@@ -39,7 +37,15 @@ The GeoLambda image does not have an entrypoint defined, so a command must be pr
3937

4038
### Lambda Layer
4139

42-
If you just wish to use the publicly avialable 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').
40+
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').
41+
42+
#### v1.1.0
43+
44+
| Region | ARN |
45+
| ------ | --- |
46+
| us-east-1 | arn:aws:lambda:us-east-1:552188055668:layer:geolambda:1 |
47+
| us-west-2 | arn:aws:lambda:us-west-2:552188055668:layer:geolambda:1 |
48+
| eu-central-1 | arn:aws:lambda:eu-central-1:552188055668:layer:geolambda:1 |
4349

4450
#### v1.1.0rc1
4551

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.0rc1
1+
1.1.0

0 commit comments

Comments
 (0)