mirror of https://github.com/tidwall/tile38.git
1.5.4
This commit is contained in:
parent
76ce0e58b2
commit
7590498c4f
|
@ -2,6 +2,10 @@
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
## [1.5.4] - 2016-11-17
|
||||||
|
### Fixed
|
||||||
|
- #84: Hotfix - roaming fence deadlock
|
||||||
|
|
||||||
## [1.5.3] - 2016-11-16
|
## [1.5.3] - 2016-11-16
|
||||||
### Added
|
### Added
|
||||||
- #4: Official docker support
|
- #4: Official docker support
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
</p>
|
</p>
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://travis-ci.org/tidwall/tile38"><img src="https://travis-ci.org/tidwall/tile38.svg?branch=master" alt="Build Status"></a>
|
<a href="https://travis-ci.org/tidwall/tile38"><img src="https://travis-ci.org/tidwall/tile38.svg?branch=master" alt="Build Status"></a>
|
||||||
<a href="https://github.com/tidwall/tile38/releases"><img src="https://img.shields.io/badge/version-1.5.3-green.svg" alt="Version"></a>
|
<a href="https://github.com/tidwall/tile38/releases"><img src="https://img.shields.io/badge/version-1.5.4-green.svg" alt="Version"></a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
Tile38 is an open source (MIT licensed), in-memory geolocation data store, spatial index, and realtime geofence. It supports a variety of object types including lat/lon points, bounding boxes, XYZ tiles, Geohashes, and GeoJSON.
|
Tile38 is an open source (MIT licensed), in-memory geolocation data store, spatial index, and realtime geofence. It supports a variety of object types including lat/lon points, bounding boxes, XYZ tiles, Geohashes, and GeoJSON.
|
||||||
|
|
4
build.sh
4
build.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
VERSION="1.5.3"
|
VERSION="1.5.4"
|
||||||
PROTECTED_MODE="no"
|
PROTECTED_MODE="no"
|
||||||
|
|
||||||
# Hardcode some values to the core package
|
# Hardcode some values to the core package
|
||||||
|
@ -83,6 +83,8 @@ package(){
|
||||||
mv tile38-cli packages/$bdir
|
mv tile38-cli packages/$bdir
|
||||||
fi
|
fi
|
||||||
cp README.md packages/$bdir
|
cp README.md packages/$bdir
|
||||||
|
cp CHANGELOG.md packages/$bdir
|
||||||
|
cp LICENSE packages/$bdir
|
||||||
cd packages
|
cd packages
|
||||||
if [ "$2" == "linux" ]; then
|
if [ "$2" == "linux" ]; then
|
||||||
tar -zcf $bdir.tar.gz $bdir
|
tar -zcf $bdir.tar.gz $bdir
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
FROM alpine:3.4
|
FROM alpine:3.4
|
||||||
|
|
||||||
ENV TILE38_VERSION 1.5.3
|
ENV TILE38_VERSION 1.5.4
|
||||||
ENV TILE38_DOWNLOAD_URL https://github.com/tidwall/tile38/releases/download/$TILE38_VERSION/tile38-$TILE38_VERSION-linux-amd64.tar.gz
|
ENV TILE38_DOWNLOAD_URL https://github.com/tidwall/tile38/releases/download/$TILE38_VERSION/tile38-$TILE38_VERSION-linux-amd64.tar.gz
|
||||||
|
|
||||||
RUN addgroup -S tile38 && adduser -S -G tile38 tile38
|
RUN addgroup -S tile38 && adduser -S -G tile38 tile38
|
||||||
|
|
Loading…
Reference in New Issue