Skip to content

Commit

Permalink
Fix hbase & add a proper changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
pomadchin committed Apr 18, 2019
1 parent 3165d27 commit 0e52bce
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .travis/hbase-install.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/bash

if [ ! -f $HOME/downloads/hbase-2.1.2-bin.tar.gz ]; then sudo wget -O $HOME/downloads/hbase-2.1.2-bin.tar.gz http://www-us.apache.org/dist/hbase/2.1.2/hbase-2.1.2-bin.tar.gz; fi
sudo mv $HOME/downloads/hbase-2.1.2-bin.tar.gz hbase-2.1.2-bin.tar.gz && tar xzf hbase-2.1.2-bin.tar.gz
sudo rm -f hbase-2.1.2/conf/hbase-site.xml && sudo mv .travis/hbase/hbase-site.xml hbase-2.1.2/conf
sudo hbase-2.1.2/bin/start-hbase.sh
if [ ! -f $HOME/downloads/hbase-2.1.4-bin.tar.gz ]; then sudo wget -O $HOME/downloads/hbase-2.1.4-bin.tar.gz http://www-us.apache.org/dist/hbase/2.1.4/hbase-2.1.4-bin.tar.gz; fi
sudo mv $HOME/downloads/hbase-2.1.4-bin.tar.gz hbase-2.1.4-bin.tar.gz && tar xzf hbase-2.1.4-bin.tar.gz
sudo rm -f hbase-2.1.4/conf/hbase-site.xml && sudo mv .travis/hbase/hbase-site.xml hbase-2.1.4/conf
sudo hbase-2.1.4/bin/start-hbase.sh
12 changes: 12 additions & 0 deletions docs/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Changelog
=========

2.3.0
-----
*2019 Apr 18*

Fixes & Updates
^^^^^^^^^^^^^^^

- Fix Accumulo and HBase AttributeStore performance (`#2899 <https://github.com/locationtech/geotrellis/pull/2899>`_).
- Fix Cassandra AttributeStore performance (`#2901 <https://github.com/locationtech/geotrellis/pull/2901>`_).
- Fix createAlignedGridExtent function actually to align to GridExtents (`#2878 <https://github.com/locationtech/geotrellis/pull/2878>`_).
- Fix to rasterRegionReproject function (`#2880 <https://github.com/locationtech/geotrellis/pull/2880>`_).

2.2.0
-----
*2019 Jan 11*
Expand Down
2 changes: 1 addition & 1 deletion project/Version.scala
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

object Version {
val geotrellis = "2.2.0"
val geotrellis = "2.3.0"
val scala = "2.11.12"
val crossScala = Seq(scala, "2.12.7")
val geotools = "20.0"
Expand Down

0 comments on commit 0e52bce

Please sign in to comment.