Skip to content

Commit 7214394

Browse files
committed
update changelog
1 parent ecddb6d commit 7214394

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed

Diff for: CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## [Unreleased]
44

5+
## [0.1.1] - 2024-08-20
6+
7+
* add support for `cube:dimensions` extension (author @jverrydt, https://github.com/developmentseed/titiler-stacapi/pull/26)
8+
* allow overriding the colormap/expression in the (author @jverrydt, https://github.com/developmentseed/titiler-stacapi/pull/26)
9+
510
## [0.1.0] - 2024-06-11
611

712
* initial release

Diff for: README.md

+12-4
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,20 @@
2727

2828
## Installation
2929

30-
Install from sources and run for development:
30+
To install from PyPI and run:
3131

32+
```bash
33+
# Make sure you have pip up to date
34+
python -m pip install -U pip
35+
python -m pip install titiler.stacapi
3236
```
33-
$ git clone https://github.com/developmentseed/titiler-stacapi.git
34-
$ cd titiler-stacapi
35-
$ python -m pip install -e .
37+
38+
or from sources and run for development:
39+
40+
```bash
41+
git clone https://github.com/developmentseed/titiler-stacapi.git
42+
cd titiler-stacapi
43+
python -m pip install -e .
3644
```
3745

3846
## Launch

Diff for: titiler/stacapi/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""titiler.stacapi"""
22

3-
__version__ = "0.1.0"
3+
__version__ = "0.1.1"

0 commit comments

Comments
 (0)