Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentsarago committed Aug 20, 2024
1 parent ecddb6d commit 7214394
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## [Unreleased]

## [0.1.1] - 2024-08-20

* add support for `cube:dimensions` extension (author @jverrydt, https://github.com/developmentseed/titiler-stacapi/pull/26)
* allow overriding the colormap/expression in the (author @jverrydt, https://github.com/developmentseed/titiler-stacapi/pull/26)

## [0.1.0] - 2024-06-11

* initial release
Expand Down
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,20 @@

## Installation

Install from sources and run for development:
To install from PyPI and run:

```bash
# Make sure you have pip up to date
python -m pip install -U pip
python -m pip install titiler.stacapi
```
$ git clone https://github.com/developmentseed/titiler-stacapi.git
$ cd titiler-stacapi
$ python -m pip install -e .

or from sources and run for development:

```bash
git clone https://github.com/developmentseed/titiler-stacapi.git
cd titiler-stacapi
python -m pip install -e .
```

## Launch
Expand Down
2 changes: 1 addition & 1 deletion titiler/stacapi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""titiler.stacapi"""

__version__ = "0.1.0"
__version__ = "0.1.1"

0 comments on commit 7214394

Please sign in to comment.